Skip to content

Commit

Permalink
Merge pull request elixir-lang#2878 from akira/supervisor_test_fix
Browse files Browse the repository at this point in the history
Fix SupervisorTest :push handle_cast method
  • Loading branch information
ericmj committed Nov 6, 2014
2 parents b7e93e6 + ad27085 commit 8491627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/elixir/test/elixir/supervisor_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ defmodule SupervisorTest do
{:stop, :normal, :ok, stack}
end

def handle_cast({:push, h}, _from, t) do
def handle_cast({:push, h}, t) do
{:noreply, [h|t]}
end
end
Expand Down

0 comments on commit 8491627

Please sign in to comment.