Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed May 3, 2017
1 parent d7b1715 commit 296aa66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/cocotest/agnostic/suite.coco
Expand Up @@ -230,7 +230,7 @@ def suite_test():
assert pattern_abs(-4) == 4 == pattern_abs_(-4)
assert vector(1, 2) |> (==)$(vector(1, 2))
assert vector(1, 2) |> .__eq__(other=vector(1, 2))
assert fib()$[1:4] == (1, 2, 3)
assert fib()$[1:4] |> tuple == (1, 2, 3)
assert fib() |> takewhile$((i) -> i < 4000000 ) |> filter$((i) -> i % 2 == 0 ) |> sum == 4613732
assert loop([1,2])$[:4] |> list == [1, 2] * 2
assert (def -> mod)()(5, 3) == 2
Expand Down

0 comments on commit 296aa66

Please sign in to comment.