Skip to content

Commit a74cc9c

Browse files
committed
fixing other test
1 parent ca5bdb2 commit a74cc9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_schema_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def test_schema_functions(function, args_kwargs, expected_schema):
300300
args, kwargs = args_kwargs
301301
schema = function(*args, **kwargs)
302302
assert schema == expected_schema
303-
if schema.get('type') in {None, 'definition-ref', 'typed-dict-field', 'model-field'}:
303+
if schema.get('type') in {None, 'definition-ref', 'typed-dict-field', 'model-field', 'invalid'}:
304304
return
305305

306306
v = SchemaValidator(schema)

0 commit comments

Comments
 (0)