Skip to content

Commit afc4bad

Browse files
committed
fix merge
1 parent 7dc5087 commit afc4bad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_schema_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ def args(*args, **kwargs):
6060
(
6161
core_schema.tuple_positional_schema,
6262
args({'type': 'int'}),
63-
{'type': 'tuple-positional', 'items_schema': ({'type': 'int'},)},
63+
{'type': 'tuple-positional', 'items_schema': [{'type': 'int'}]},
6464
),
65-
(core_schema.tuple_positional_schema, args(), {'type': 'tuple-positional', 'items_schema': ()}),
65+
(core_schema.tuple_positional_schema, args(), {'type': 'tuple-positional', 'items_schema': []}),
6666
(
6767
core_schema.tuple_variable_schema,
6868
args({'type': 'int'}),

0 commit comments

Comments
 (0)