Skip to content

Commit 9c55e60

Browse files
committed
Fixed typo
1 parent e2e4574 commit 9c55e60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

driver/src/main/java/org/neo4j/driver/v1/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ public static TrustStrategy trustCustomCertificateSignedBy( File certFile )
348348
return new TrustStrategy( Strategy.TRUST_CUSTOM_CA_SIGNED_CERTIFICATES, certFile );
349349
}
350350

351-
public static TrustStrategy trustSystemCertifcates()
351+
public static TrustStrategy trustSystemCertificates()
352352
{
353353
return new TrustStrategy( Strategy.TRUST_SYSTEM_CA_SIGNED_CERTIFICATES );
354354
}

driver/src/test/java/org/neo4j/driver/v1/integration/TLSSocketChannelIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public void shouldNotPerformTLSHandshakeWithNonSystemCert() throws Throwable
129129
{
130130
TLSSocketChannel sslChannel =
131131
new TLSSocketChannel( "localhost", 7687, channel, logger,
132-
Config.TrustStrategy.trustSystemCertifcates() );
132+
Config.TrustStrategy.trustSystemCertificates() );
133133
sslChannel.close();
134134
}
135135
catch ( SSLHandshakeException e )

0 commit comments

Comments
 (0)