We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71e89e7 commit e77e4eaCopy full SHA for e77e4ea
tests/test_typeclass/test_call.py
@@ -25,10 +25,10 @@ def _my_len_list(instance: list) -> int:
25
return 1
26
27
28
-@pytest.mark.parameterized(('data_type', 'expected'), [
+@pytest.mark.parametrize(('data_type', 'expected'), [
29
([], 1), # direct list call
30
('', 0), # sized protocol
31
- (None, -1), # object fallback
+ (1, -1), # object fallback
32
])
33
def test_call_order(data_type, expected):
34
"""Ensures that call order is correct."""
0 commit comments