File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
main/java/org/neo4j/driver/v1
test/java/org/neo4j/driver/internal Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ public static class ConfigBuilder
142142 private long idleTimeBeforeConnectionTest = 200 ;
143143 private EncryptionLevel encruptionLevel = EncryptionLevel .REQUIRED ;
144144 private TrustStrategy trustStrategy = trustOnFirstUse (
145- new File ( getProperty ( "user.home" ), ".neo4j/neo4j_known_hosts " ) );
145+ new File ( getProperty ( "user.home" ), ".neo4j" + File . separator + "known_hosts " ) );
146146
147147 private ConfigBuilder () {}
148148
Original file line number Diff line number Diff line change 3131
3232public class ConfigTest
3333{
34- private static final File DEFAULT_KNOWN_HOSTS = new File ( getProperty ( "user.home" ), ".neo4j/neo4j_known_hosts" );
34+ private static final File DEFAULT_KNOWN_HOSTS = new File ( getProperty ( "user.home" ),
35+ ".neo4j" + File .separator + "known_hosts" );
3536
3637 @ Test
3738 public void shouldDefaultToKnownCerts ()
You can’t perform that action at this time.
0 commit comments