|
@@ -137,4 +137,5 @@ def test_function_overloaded(fnsyms: Iterable[str], expected: bool):
|
|
|
Of course, this is only inference based on symbol name.
|
|
|
"""
|
|
|
node_syms = map(dh.extract_method_fname, map(dm.parse, fnsyms))
|
|
|
- assert all(a == b for a, b in itertools.permutations(node_syms, 2))
|
|
|
+ for a, b in itertools.permutations(node_syms, 2):
|
|
|
+ assert a == b
|