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 3030import org .neo4j .driver .v1 .util .Neo4jRunner ;
3131
3232import static org .junit .Assume .assumeTrue ;
33+ import static org .neo4j .driver .v1 .util .Neo4jRunner .PASSWORD ;
3334import static org .neo4j .driver .v1 .util .Neo4jRunner .TARGET_DIR ;
35+ import static org .neo4j .driver .v1 .util .Neo4jRunner .USER ;
3436import static org .neo4j .driver .v1 .util .cc .CommandLineUtil .boltKitAvailable ;
3537
3638public class ClusterRule extends ExternalResource
3739{
3840 private static final Path CLUSTER_DIR = Paths .get ( TARGET_DIR , "test-cluster" ).toAbsolutePath ();
39- private static final String PASSWORD = "test" ;
4041 private static final int INITIAL_PORT = 20_000 ;
4142
4243 public static final int CORE_COUNT = 3 ;
@@ -49,7 +50,7 @@ public Cluster getCluster()
4950
5051 public AuthToken getDefaultAuthToken ()
5152 {
52- return AuthTokens .basic ( "neo4j" , PASSWORD );
53+ return AuthTokens .basic ( USER , PASSWORD );
5354 }
5455
5556 public static void stopSharedCluster ()
You can’t perform that action at this time.
0 commit comments