Skip to content

Commit

Permalink
fix a test
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed May 17, 2023
1 parent a7fd6cc commit 4e0602d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/parser/test_call_graph_stability.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,6 @@ def foo():
r = d.args[0].args[0].value
if isinstance(r, str) and r.startswith("internal"):
ir_funcs.append(r)
assert ir_funcs == [f._ir_info.internal_function_label for f in sigs.values()]
assert ir_funcs == [
f._ir_info.internal_function_label(is_ctor_context=False) for f in sigs.values()
]

0 comments on commit 4e0602d

Please sign in to comment.