Skip to content

Commit ae75f31

Browse files
committed
Increase timeout in ChannelConnectorImplTest
This test is often the first one to download and install shared neo4j database. It might take more than 20 seconds to do this on a slow connection. Thus timeout is increased to 60 seconds.
1 parent 9a57216 commit ae75f31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver/src/test/java/org/neo4j/driver/internal/async/ChannelConnectorImplTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public class ChannelConnectorImplTest
6363
{
6464
private final TestNeo4j neo4j = new TestNeo4j();
6565
@Rule
66-
public final RuleChain ruleChain = RuleChain.outerRule( Timeout.seconds( 20 ) ).around( neo4j );
66+
public final RuleChain ruleChain = RuleChain.outerRule( Timeout.seconds( 60 ) ).around( neo4j );
6767

6868
private Bootstrap bootstrap;
6969

0 commit comments

Comments
 (0)