aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/attribute/searchable/attributeblueprint_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/tests/attribute/searchable/attributeblueprint_test.cpp')
-rw-r--r--searchlib/src/tests/attribute/searchable/attributeblueprint_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchlib/src/tests/attribute/searchable/attributeblueprint_test.cpp b/searchlib/src/tests/attribute/searchable/attributeblueprint_test.cpp
index 0a6a912156a..ed1e15e17e7 100644
--- a/searchlib/src/tests/attribute/searchable/attributeblueprint_test.cpp
+++ b/searchlib/src/tests/attribute/searchable/attributeblueprint_test.cpp
@@ -373,9 +373,9 @@ TEST(AttributeBlueprintTest, nearest_neighbor_blueprint_is_created_by_attribute_
// same cell type:
expect_nearest_neighbor_blueprint("tensor(x[2])", x_2_double, x_2_double);
expect_nearest_neighbor_blueprint("tensor<float>(x[2])", x_2_float, x_2_float);
- // convert cell type:
- expect_nearest_neighbor_blueprint("tensor(x[2])", x_2_float, x_2_double);
- expect_nearest_neighbor_blueprint("tensor<float>(x[2])", x_2_double, x_2_float);
+ // converts cell type internally:
+ expect_nearest_neighbor_blueprint("tensor(x[2])", x_2_float, x_2_float);
+ expect_nearest_neighbor_blueprint("tensor<float>(x[2])", x_2_double, x_2_double);
}
void