Skip to content

Commit ae1f3bc

Browse files
committed
[grid] Setting a max concurrency based on what the test is expecting
1 parent 97dca9e commit ae1f3bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/server/test/org/openqa/selenium/grid/node/local/LocalNodeTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public HttpResponse execute(HttpRequest req) {
182182
.add(caps, new TestSessionFactory(VerifyingHandler::new))
183183
.add(caps, new TestSessionFactory(VerifyingHandler::new))
184184
.add(caps, new TestSessionFactory(VerifyingHandler::new))
185-
.maximumConcurrentSessions(2)
185+
.maximumConcurrentSessions(3)
186186
.build();
187187

188188
List<Callable<SessionId>> callables = new ArrayList<>();

0 commit comments

Comments
 (0)