diff options
Diffstat (limited to 'test/commands_test.exs')
-rw-r--r-- | test/commands_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/commands_test.exs b/test/commands_test.exs index 38c2e90..97837ae 100644 --- a/test/commands_test.exs +++ b/test/commands_test.exs @@ -29,7 +29,7 @@ defmodule ExIRC.CommandsTest do expected = <<"PART testchan", ?\r, ?\n>> assert expected == part!("testchan") |> IO.iodata_to_binary expected = <<"QUIT :Leaving", ?\r, ?\n>> - assert expected == quit! |> IO.iodata_to_binary + assert expected == quit!() |> IO.iodata_to_binary expected = <<"QUIT :Goodbye, cruel world.", ?\r, ?\n>> assert expected == quit!("Goodbye, cruel world.") |> IO.iodata_to_binary expected = <<"KICK #testchan testuser", ?\r, ?\n>> |