Skip to content

Commit

Permalink
Fix missing awaitFailure in MultiGroupTest
Browse files Browse the repository at this point in the history
  • Loading branch information
cescoffier committed Mar 12, 2021
1 parent 24ebf3a commit 6b9ea11
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -896,8 +896,12 @@ public void testGroupByWithUpstreamFailure() {

emitter.get().fail(new TestException("boom"));

s1.assertFailedWith(TestException.class, "boom");
s2.assertFailedWith(TestException.class, "boom");
s1
.awaitFailure()
.assertFailedWith(TestException.class, "boom");
s2
.awaitFailure()
.assertFailedWith(TestException.class, "boom");
subscriber.assertFailedWith(TestException.class, "boom");
}

Expand Down

0 comments on commit 6b9ea11

Please sign in to comment.