Changed to a single line, so its consistent with other sections

This commit is contained in:
Stephen Rufle
2017-01-24 18:34:07 -07:00
parent 55f1648bbd
commit 21a162b80e

View File

@@ -61,12 +61,7 @@ defmodule Structs do
end
koan "Use the put_in macro with atoms to replace a nested value in a non-struct" do
airline = %{
plane: %{
maker: :boeing
},
name: "Southwest"
}
airline = %{plane: %{maker: :boeing}, name: "Southwest"}
assert put_in(airline[:plane][:maker], :cessna) == ___
end
end