Skip to content

Commit 9b44c2c

Browse files
committed
fix: test
1 parent 5a97ac6 commit 9b44c2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_router.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,7 @@ def test_with_unrecognized_route(self, routes, index_cls, encoder_cls, router_cl
11441144
query_results = [{"route": "UnrecognizedRoute", "score": 0.9}]
11451145
results = route_layer._semantic_classify(query_results)
11461146
assert (
1147-
results == query_results
1147+
results == ("UnrecognizedRoute", [0.9])
11481148
), "Semantic classify can return unrecognized routes"
11491149

11501150
def test_set_aggregation_method_with_unsupported_value(

0 commit comments

Comments
 (0)