Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/core/Akka.Tests/Actor/BugFix4376Spec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,12 @@ public async Task Supervisor_with_Broadcast_Pool_router_should_handle_multiple_c
}

poolActorRef.Tell(2);
ExpectMsg<int>();
ExpectMsg<int>();
ExpectMsg<int>();
ExpectMsg<int>();
ExpectMsg<int>();
ExpectNoMsg(TimeSpan.FromSeconds(1));
await ExpectMsgAsync<int>();
await ExpectMsgAsync<int>();
await ExpectMsgAsync<int>();
await ExpectMsgAsync<int>();
await ExpectMsgAsync<int>();
await ExpectNoMsgAsync(TimeSpan.FromSeconds(1));
}

[Fact]
Expand Down