Skip to content

Commit 95a196a

Browse files
committed
Move map_comp test to passing
1 parent 6b59980 commit 95a196a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/failing_tests/conditionals/map_comp.py renamed to tests/passing_tests/conditionals/map_comp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def last() -> HashMap:
1414
def hello_world(ctx: c_void_p) -> c_int64:
1515
last.update(0, 1)
1616
tsp = last.lookup(0)
17-
if not (tsp > 0):
17+
if tsp > 0:
1818
print("Hello, World!")
1919
else:
2020
print("Goodbye, World!")

0 commit comments

Comments
 (0)