Merge pull request #86 from Troush/structs-safe-fetch

Map.fetch! -> Map.fetch in 06_structs.ex
This commit is contained in:
Uku Taht
2016-04-26 19:21:22 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -41,6 +41,6 @@ defmodule Structs do
koan "Struct can be treated like maps" do
silvia = %Person{age: 22, name: "Silvia"}
assert Map.fetch!(silvia, :age) == ___
assert Map.fetch(silvia, :age) == ___
end
end

View File

@@ -9,7 +9,7 @@ defmodule StructsTests do
"Joe",
33,
{:multiple, [true, false]},
22,
{:ok, 22},
]
test_all(Structs, answers)