whitespace

This commit is contained in:
Jay Hayes
2017-02-19 07:13:01 -06:00
parent 0985507d45
commit 84cd227108
2 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ defmodule MapSets do
koan "Does this value exist in the map set?" do koan "Does this value exist in the map set?" do
assert MapSet.member?(@set, 3) == ___ assert MapSet.member?(@set, 3) == ___
end end
koan "I am merely another collection but, you can perform some operations on me" do koan "I am merely another collection but, you can perform some operations on me" do
new_set = MapSet.new(@set, fn x -> 3 * x end) new_set = MapSet.new(@set, fn x -> 3 * x end)

View File

@@ -4,13 +4,13 @@ defmodule MapSetsTest do
test "MapSets" do test "MapSets" do
answers = [ answers = [
1, 1,
3, 3,
:ok, :ok,
true, true,
{:multiple, [true, false]}, {:multiple, [true, false]},
true, true,
false, false,
5, 5,
false, false,
true, true,