File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -267,17 +267,17 @@ def test_type_name(type_, repr_):
267267
268268@pytest .mark .parametrize ("sender_type, receiver_type" , symmetric_cases )
269269def test_same_types_are_compatible_strict (sender_type , receiver_type ):
270- assert _types_are_compatible (sender_type , receiver_type , "strict" )
270+ assert _types_are_compatible (sender_type , receiver_type , True )
271271
272272
273273@pytest .mark .parametrize ("sender_type, receiver_type" , asymmetric_cases )
274274def test_asymmetric_types_are_compatible_strict (sender_type , receiver_type ):
275- assert _types_are_compatible (sender_type , receiver_type , "strict" )
275+ assert _types_are_compatible (sender_type , receiver_type , True )
276276
277277
278278@pytest .mark .parametrize ("sender_type, receiver_type" , asymmetric_cases )
279279def test_asymmetric_types_are_not_compatible_strict (sender_type , receiver_type ):
280- assert not _types_are_compatible (receiver_type , sender_type , "strict" )
280+ assert not _types_are_compatible (receiver_type , sender_type , True )
281281
282282
283283incompatible_type_cases = [
You can’t perform that action at this time.
0 commit comments