summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorThéophile Choutri <theophile@choutri.eu>2018-01-19 15:13:48 +0100
committerThéophile Choutri <theophile@choutri.eu>2018-01-19 15:13:48 +0100
commita9258d1058815fa0d8c3201a4caf651754621f8e (patch)
treea77836ef754be914aee4b32e357ffb6a2fd378b2 /test
parentAdd WHO query (#78) (diff)
Fix a parens warning and indentationmaster
Diffstat (limited to 'test')
-rw-r--r--test/commands_test.exs2
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>>