From ba1a39cdb42897a18676d0b433ee4aa811cac104 Mon Sep 17 00:00:00 2001 From: sammasak Date: Thu, 24 Jul 2025 21:43:41 +0200 Subject: [PATCH] Update tests/test_openapi_schema_type.py Co-authored-by: Motov Yurii <109919500+YuriiMotov@users.noreply.github.com> --- tests/test_openapi_schema_type.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_openapi_schema_type.py b/tests/test_openapi_schema_type.py index aad699925..9030eaa88 100644 --- a/tests/test_openapi_schema_type.py +++ b/tests/test_openapi_schema_type.py @@ -21,7 +21,7 @@ def test_allowed_schema_type( assert schema.type == type_value -def test_invlid_type_value() -> None: +def test_invalid_type_value() -> None: """Test that Schema raises ValueError for invalid type values.""" with pytest.raises(ValueError, match="2 validation errors for Schema"): Schema(type=True) # type: ignore[arg-type]