Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed Mar 22, 2024
1 parent c4893a3 commit c3925ef
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 @@ -633,7 +633,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
assert HasDefs.__annotations__.keys() |> list == ["a_def", "case_def"], HasDefs.__annotations__
assert HasDefs.__annotations__.keys() |> set == {"a_def", "case_def"}, 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 c3925ef

Please sign in to comment.