From b4b699b2bbfbf5524997b3769e85b8915b925842 Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Thu, 6 Nov 2025 11:11:08 -0800 Subject: [PATCH] Cleanup --- tests/test_validation_error_context.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_validation_error_context.py b/tests/test_validation_error_context.py index a22f436b9..1d0912c50 100644 --- a/tests/test_validation_error_context.py +++ b/tests/test_validation_error_context.py @@ -97,7 +97,6 @@ def test_websocket_validation_error_includes_endpoint_context(): def test_validation_error_with_only_path(): - """Test formatting when only endpoint_path is available (lines 175-176).""" errors = [{"type": "missing", "loc": ("body", "name"), "msg": "Field required"}] exc = RequestValidationError(errors, endpoint_ctx={"path": "GET /api/test"}) error_str = str(exc) @@ -106,7 +105,6 @@ def test_validation_error_with_only_path(): def test_validation_error_with_no_context(): - """Test formatting when no context is available (line 177).""" errors = [{"type": "missing", "loc": ("body", "name"), "msg": "Field required"}] exc = RequestValidationError(errors, endpoint_ctx={}) error_str = str(exc)