Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed Sep 1, 2024
1 parent 2bfc452 commit 58b1de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coconut/tests/src/cocotest/agnostic/suite.coco
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ def suite_test() -> bool:
assert map(HasDefs().a_def, range(5)) |> list == range(1, 6) |> list
assert HasDefs().a_def 1 == 2
assert HasDefs().case_def 1 == 0 == HasDefs().case_def_ 1
assert HasDefs.__annotations__.keys() |> set == {"a_def"}, HasDefs.__annotations__
assert "a_def" in HasDefs.__annotations__.keys() |> set, HasDefs.__annotations__
assert store.plus1 store.one == store.two
assert ret_locals()["my_loc"] == 1
assert ret_globals()["my_glob"] == 1
Expand Down

0 comments on commit 58b1de3

Please sign in to comment.