summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2018-07-10 11:47:21 +0200
committerJosé Valim <jose.valim@plataformatec.com.br>2018-07-10 11:47:21 +0200
commitf303ea61352dacca149c355a31b9188f81ff2045 (patch)
tree6b49da28aff0d0e518cfc0633206f0609f400a07
parente16775d5a4f9c67fde54b1fc9bfe888c3e33f0f6 (diff)
downloadelixir-f303ea61352dacca149c355a31b9188f81ff2045.tar.gz
Use proper left == right in IEx signature tests
-rw-r--r--lib/iex/test/iex/helpers_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/iex/test/iex/helpers_test.exs b/lib/iex/test/iex/helpers_test.exs
index 07a6b64a9..a8a1db0df 100644
--- a/lib/iex/test/iex/helpers_test.exs
+++ b/lib/iex/test/iex/helpers_test.exs
@@ -379,7 +379,7 @@ defmodule IEx.HelpersTest do
c_h = "* def c(files, path \\\\ :in_memory)\n\nCompiles the given files."
eq_h =
- "* def ==(left, right)\n\n @spec term() == term() :: boolean()\n\nReturns `true` if the two items are equal.\n\n"
+ "* def left == right\n\n @spec term() == term() :: boolean()\n\nReturns `true` if the two items are equal.\n\n"
def_h =
"* defmacro def(call, expr \\\\ nil)\n\nDefines a function with the given name and body."