Skip to content

Commit 25f34df

Browse files
committed
test(e2e): update assertion for sanitized inference error message (SEC-008)
The SEC-008 fix changed the error message from 'no compatible route for source protocol ...' to 'no compatible inference route available'. Update the E2E assertion substring to match.
1 parent 4ff0d12 commit 25f34df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e/python/test_inference_routing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ def call_anthropic_messages() -> str:
319319
assert result.exit_code == 0, f"stderr: {result.stderr}"
320320
output = result.stdout.strip()
321321
assert output.startswith("http_error_400"), output
322-
assert "no compatible route" in output
322+
assert "no compatible inference route" in output
323323

324324

325325
def test_non_inference_host_is_not_intercepted(

0 commit comments

Comments
 (0)