File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
driver/src/test/java/org/neo4j/driver/v1/util/cc Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 30
30
import org .neo4j .driver .v1 .util .Neo4jRunner ;
31
31
32
32
import static org .junit .Assume .assumeTrue ;
33
+ import static org .neo4j .driver .v1 .util .Neo4jRunner .PASSWORD ;
33
34
import static org .neo4j .driver .v1 .util .Neo4jRunner .TARGET_DIR ;
35
+ import static org .neo4j .driver .v1 .util .Neo4jRunner .USER ;
34
36
import static org .neo4j .driver .v1 .util .cc .CommandLineUtil .boltKitAvailable ;
35
37
36
38
public class ClusterRule extends ExternalResource
37
39
{
38
40
private static final Path CLUSTER_DIR = Paths .get ( TARGET_DIR , "test-cluster" ).toAbsolutePath ();
39
- private static final String PASSWORD = "test" ;
40
41
private static final int INITIAL_PORT = 20_000 ;
41
42
42
43
public static final int CORE_COUNT = 3 ;
@@ -49,7 +50,7 @@ public Cluster getCluster()
49
50
50
51
public AuthToken getDefaultAuthToken ()
51
52
{
52
- return AuthTokens .basic ( "neo4j" , PASSWORD );
53
+ return AuthTokens .basic ( USER , PASSWORD );
53
54
}
54
55
55
56
public static void stopSharedCluster ()
You can’t perform that action at this time.
0 commit comments