Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Jan 10, 2024
1 parent b06c61f commit 4d9a50e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pysoot.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_exceptions1(self):
lifter = Lifter(jar)

mm = lifter.classes["exceptions1.Main"].methods[1]
assert mm.basic_cfg[mm.blocks[0]] == [mm.blocks[1], mm.blocks[2]]
assert mm.basic_cfg[mm.blocks[0]] == (mm.blocks[1], mm.blocks[2])
assert len(mm.exceptional_preds) == 1

preds = mm.exceptional_preds[mm.blocks[18]]
Expand Down

0 comments on commit 4d9a50e

Please sign in to comment.