diff --git a/test/array_test.exs b/test/array_test.exs index f2a9393..5d8af8b 100644 --- a/test/array_test.exs +++ b/test/array_test.exs @@ -450,7 +450,6 @@ defmodule ArrayTest do end test "Enumerable.reduce" do - a = Array.from_list([1,2,3]) sum = Enum.reduce(Array.from_list([1,2,3]), 0, fn(x, acc) -> x + acc end) assert 6 == sum end