Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
harkal committed Apr 30, 2024
1 parent 147d3f0 commit f00de82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/compiler/asm/test_asm_optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,5 @@ def foo():

@pytest.mark.parametrize("asm", asms)
def test_merge_jumpdests(asm):
assert _merge_jumpdests(asm) == True
assert _merge_jumpdests(asm) == False, "Should not 'merge jumpdests' again"
assert _merge_jumpdests(asm) is True
assert _merge_jumpdests(asm) is False, "Should not 'merge jumpdests' again"

0 comments on commit f00de82

Please sign in to comment.