We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1606b0c commit e7016a3Copy full SHA for e7016a3
lib/iex/test/iex/helpers_test.exs
@@ -151,7 +151,7 @@ defmodule IEx.HelpersTest do
151
152
test "b helper function" do
153
assert capture_io(fn -> b Mix.Task.stop end) == "No documentation for Mix.Task.stop was found\n"
154
- assert capture_io(fn -> b Mix.Task.run end) =~ "* @callback run([binary()]) :: any()\n\nA task needs to implement `run`"
+ assert capture_io(fn -> b Mix.Task.run end) =~ "* @callback run(command_line_args :: [binary()]) :: any()\n\nA task needs to implement `run`"
155
assert capture_io(fn -> b NoMix.run end) == "Could not load module NoMix, got: nofile\n"
156
assert capture_io(fn -> b Exception.message/1 end) == "* @callback message(t()) :: String.t()\n\n\n"
157
end
0 commit comments