Fixed __. Should be ___

This commit is contained in:
huyz
2017-02-10 23:50:44 -08:00
parent 0b1f19accc
commit 0985507d45

View File

@@ -18,8 +18,8 @@ defmodule MapSets do
koan "Even though I am like a list I am unordered, especially with 33+ elements" do
new_set = MapSet.new 1..33
ordered_list = Enum.to_list 1..33
assert (ordered_list == MapSet.to_list(new_set)) == __
assert (ordered_list == MapSet.to_list(new_set) |> Enum.sort()) == __
assert (ordered_list == MapSet.to_list(new_set)) == ___
assert (ordered_list == MapSet.to_list(new_set) |> Enum.sort()) == ___
end
koan "Does this value exist in the map set?" do