aboutsummaryrefslogtreecommitdiff
path: root/gen/test
diff options
context:
space:
mode:
Diffstat (limited to 'gen/test')
-rw-r--r--gen/test/list_test.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/gen/test/list_test.erl b/gen/test/list_test.erl
index 20c1d1c..14e204b 100644
--- a/gen/test/list_test.erl
+++ b/gen/test/list_test.erl
@@ -114,7 +114,8 @@ zip_test() ->
strict_zip_test() ->
expect:is_error(list:strict_zip([], [1, 2, 3])),
expect:is_error(list:strict_zip([1, 2], [])),
- expect:equal(list:zip([1, 2, 3], [4, 5, 6]), [{1, 4}, {2, 5}, {3, 6}]),
+ expect:equal(list:strict_zip([1, 2, 3], [4, 5, 6]),
+ {ok, [{1, 4}, {2, 5}, {3, 6}]}),
expect:is_error(list:strict_zip([5, 6], [1, 2, 3])),
expect:is_error(list:strict_zip([5, 6, 7], [1, 2])).