Skip to content

Commit b578f45

Browse files
author
José Valim
committed
Fix IEx test
1 parent a34ccfe commit b578f45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/iex/test/iex/helpers_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ defmodule IEx.HelpersTest do
6161
= capture_io(fn -> t Enum.t end)
6262
assert capture_io(fn -> t Enum.t end) == capture_io(fn -> t Enum.t/0 end)
6363

64-
assert "@opaque t()\n" = capture_io(fn -> t Regex.t end)
65-
assert capture_io(fn -> t Regex.t end) == capture_io(fn -> t Regex.t/0 end)
64+
assert "@opaque t()\n" = capture_io(fn -> t HashDict.t end)
65+
assert capture_io(fn -> t HashDict.t end) == capture_io(fn -> t HashDict.t/0 end)
6666
end
6767

6868
test "s helper" do

0 commit comments

Comments
 (0)