Skip to content

Commit

Permalink
Fix mypy test error
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed Jul 26, 2024
1 parent 3d7577e commit 5f8bc6c
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 @@ -178,7 +178,7 @@ def suite_test() -> bool:
assert init_last([1,2,3]) == ([1,2], 3)
assert last_two([1,2,3]) == (2, 3) == last_two_([1,2,3])
assert expl_ident(5) == 5 == ident(5)
assert mod$ <| 5 <| 3 == 2 == (%)$ <| 5 <| 3
assert mod$ <| 5 <| 3 == 2 == (%)$ <| 5 <| 3 # type: ignore
assert 5 |> dectest == 5
try:
raise ValueError()
Expand Down

0 comments on commit 5f8bc6c

Please sign in to comment.