Skip to content

Commit

Permalink
reversed condition
Browse files Browse the repository at this point in the history
  • Loading branch information
HodanPlodky committed Nov 26, 2024
1 parent c6081a0 commit 6525d10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/compiler/venom/test_memmerging.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


def test_memmerging():
if version_check(end="shanghai"):
if not version_check(begin="shanghai"):
return
ctx = IRContext()
fn = ctx.create_function("_global")
Expand Down Expand Up @@ -36,7 +36,7 @@ def test_memmerging():


def test_memmerging_imposs():
if version_check(end="shanghai"):
if not version_check(begin="cancun"):
return
ctx = IRContext()
fn = ctx.create_function("_global")
Expand Down

0 comments on commit 6525d10

Please sign in to comment.