This repository was archived by the owner on Jun 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
services-gateway-tests/src/test/java/io/scalecube/services/gateway/websocket Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ void testMessageSequence() {
9898 .transport (new GatewayClientTransport (client ))
9999 .router (new StaticAddressRouter (gatewayAddress ));
100100
101- int count = ThreadLocalRandom .current ().nextInt (1042 ) + 24 ;
101+ int count = ThreadLocalRandom .current ().nextInt (100 , 1042 ) + 24 ;
102102
103103 StepVerifier .create (serviceCall .api (TestService .class ).many (count ) /*.log("<<< ")*/ )
104104 .expectNextSequence (IntStream .range (0 , count ).boxed ().collect (Collectors .toList ()))
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ void testMessageSequence() {
8383 .transport (new GatewayClientTransport (client ))
8484 .router (new StaticAddressRouter (gatewayAddress ));
8585
86- int count = ThreadLocalRandom .current ().nextInt (1042 ) + 24 ;
86+ int count = ThreadLocalRandom .current ().nextInt (100 , 1042 ) + 24 ;
8787
8888 StepVerifier .create (serviceCall .api (TestService .class ).many (count ) /*.log("<<< ")*/ )
8989 .expectNextSequence (IntStream .range (0 , count ).boxed ().collect (Collectors .toList ()))
You can’t perform that action at this time.
0 commit comments