Remove unneeded case

This commit is contained in:
Jay Hayes
2016-05-02 18:54:22 -05:00
parent 6772308e9a
commit b955a4db64

View File

@@ -28,7 +28,6 @@ defmodule Processes do
koan "A common pattern is to include the sender in the message, so that it can reply" do koan "A common pattern is to include the sender in the message, so that it can reply" do
pid = spawn(fn -> receive do pid = spawn(fn -> receive do
{:hello, sender} -> send sender, :how_are_you? {:hello, sender} -> send sender, :how_are_you?
_ -> assert false
end end
end) end)