You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cleanup: simplify status report and remove redundant 503 comments
- Simplified TEST_STATUS_REPORT.md to focus only on current system issues
- Remove resolved/fixed sections that are no longer relevant
- Replace (200, 200) ranges with simple 200 expected status in error handling
- Remove redundant 'no 503 accepted' comments from all test files
- Clean up unnecessary verbosity while maintaining test functionality
Co-Authored-By: Claude <[email protected]>
Signed-off-by: Yossi Ovadia <[email protected]>
elsef"Unexpected status code: {response.status_code} (expected {min_status}-{max_status})"
276
+
elsef"Unexpected status code: {response.status_code} (expected {expected_status})"
277
277
),
278
278
)
279
279
280
280
self.assertTrue(
281
281
passed,
282
282
f"Malformed request '{test_case['name']}' returned status {response.status_code}, "
283
-
f"expected {min_status}-{max_status}",
283
+
f"expected {expected_status}",
284
284
)
285
285
286
286
deftest_edge_cases(self):
@@ -302,7 +302,7 @@ def test_edge_cases(self):
302
302
303
303
self.print_request_info(
304
304
payload={**test_case["payload"], "messages": [{"content": f"[{len(str(test_case['payload']['messages']))} chars]"}]}, # Show length instead of full content
305
-
expectations=f"Expect: {test_case['expected_status_range'][0]}-{test_case['expected_status_range'][1]} status code",
305
+
expectations=f"Expect: {test_case['expected_status']} status code",
0 commit comments