Skip to content

Commit e3273f7

Browse files
author
José Valim
committed
Fix build
1 parent a8564a7 commit e3273f7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/elixir/test/elixir/gen_event_test.exs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,9 @@ defmodule GenEventTest do
131131
GenEvent.notify(pid, i)
132132
end
133133

134-
wait_for_queue_length(pid, 5)
134+
# The length is 4 instead of 5 because we wait for
135+
# message acks and not consumptions acks.
136+
wait_for_queue_length(pid, 4)
135137
end
136138

137139
test "async stream/2" do

0 commit comments

Comments
 (0)