From eb243dd13cbcdf5f6d37b7e2084414df95d7e0d9 Mon Sep 17 00:00:00 2001 From: Brett Snyder Date: Fri, 10 May 2019 12:18:27 -0500 Subject: list:strict_zip fix test (#168) --- test/list_test.gleam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/list_test.gleam b/test/list_test.gleam index 779ba7b..ef80223 100644 --- a/test/list_test.gleam +++ b/test/list_test.gleam @@ -211,8 +211,8 @@ pub fn strict_zip_test() { list:strict_zip([1, 2], []) |> expect:is_error - list:zip([1, 2, 3], [4, 5, 6]) - |> expect:equal(_, [{1, 4}, {2, 5}, {3, 6}]) + list:strict_zip([1, 2, 3], [4, 5, 6]) + |> expect:equal(_, Ok([{1, 4}, {2, 5}, {3, 6}])) list:strict_zip([5, 6], [1, 2, 3]) |> expect:is_error -- cgit v1.2.3