Remove warnings from akka-stream-tests (#27114)

This commit is contained in:
Christopher Batey 2019-06-13 12:06:02 +01:00 committed by Patrik Nordwall
parent 03588c3036
commit 231f0d6bb1
122 changed files with 546 additions and 551 deletions

View file

@ -326,7 +326,7 @@ public class SourceTest extends StreamTest {
List<Object> output = probe.receiveN(5);
assertEquals(Arrays.asList(4, 3, 2, 1, 0), output);
probe.expectNoMsg(FiniteDuration.create(500, TimeUnit.MILLISECONDS));
probe.expectNoMessage(FiniteDuration.create(500, TimeUnit.MILLISECONDS));
}
@Test