Fixed tests

This commit is contained in:
Andrew Kane
2023-06-29 10:17:15 -04:00
parent 209394faab
commit 88094fc39f
2 changed files with 17 additions and 7 deletions

View File

@@ -23,9 +23,9 @@ foreach (@operators) {
# Add index
my $opclass;
if ($operator == "<->") {
if ($operator eq "<->") {
$opclass = "vector_l2_ops";
} elsif ($operator == "<#>") {
} elsif ($operator eq "<#>") {
$opclass = "vector_ip_ops";
} else {
$opclass = "vector_cosine_ops";