We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57d785c commit 9a0b8ffCopy full SHA for 9a0b8ff
1 file changed
rlib-network/src/test/java/com/ss/rlib/network/test/StringNetworkTest.java
@@ -384,7 +384,7 @@ void shouldGetAllPacketWithFeedback() {
384
Assertions.assertNull(notSentPacket, "Found not sent packets...");
385
386
// so all packets are already sent, we should not wait for long time to get result
387
- var receivedPackets = ObjectUtils.notNull(pendingPacketsOnServer.blockFirst(Duration.ofMillis(10)));
+ var receivedPackets = ObjectUtils.notNull(pendingPacketsOnServer.blockFirst(Duration.ofMillis(100)));
388
389
Assertions.assertEquals(receivedPackets.size(), packetCount, "Didn't receive all packets");
390
}
0 commit comments