Skip to content

Commit

Permalink
- fixed test;
Browse files Browse the repository at this point in the history
  • Loading branch information
jaltmayerpizzorno committed May 5, 2024
1 parent 87323e8 commit 2122aec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_branch.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,11 +513,11 @@ def test_match():
def test_match_case_with_false_guard():
t = ast_parse("""
x = 0
v = 2
v = 1
match v:
case 1 if x > 0:
x = 1
case 2:
case 1:
x = 2
x += 2
""")
Expand Down

0 comments on commit 2122aec

Please sign in to comment.