Skip to content

Commit 1a82948

Browse files
committed
remove redundant stuff
1 parent 30f8428 commit 1a82948

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

tests/validators/test_with_default.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -894,18 +894,3 @@ def _raise(ex: Exception) -> None:
894894
v.validate_python(input_value)
895895

896896
assert exc_info.value.errors(include_url=False, include_context=False) == expected
897-
898-
899-
def test_validate_default_on_validator_creation():
900-
SchemaValidator(
901-
{
902-
'type': 'typed-dict',
903-
'fields': {
904-
'x': {'type': 'typed-dict-field', 'schema': {'type': 'str'}},
905-
'y': {
906-
'type': 'typed-dict-field',
907-
'schema': {'type': 'default', 'schema': {'type': 'str'}, 'default': 1},
908-
},
909-
},
910-
}
911-
)

0 commit comments

Comments
 (0)