Remove duplicative koan

This truth is self-evident from the other koans.
This commit is contained in:
Jay Hayes
2019-04-01 11:56:38 -05:00
parent d79e65cd82
commit 1d0cf88521
2 changed files with 0 additions and 6 deletions

View File

@@ -98,11 +98,6 @@ defmodule GenServers do
assert is_pid(pid) == ___
end
koan "When starting a GenServer you can set it's initial state" do
{:ok, pid} = GenServer.start_link(Laptop, "3kr3t!")
assert GenServer.call(pid, :get_password) == ___
end
koan "The handle_call callback is synchronous so it will block until a reply is received" do
{:ok, pid} = GenServer.start_link(Laptop, "3kr3t!")
assert GenServer.call(pid, :get_password) == ___