Skip to content

Commit cd07ad2

Browse files
committed
merge
1 parent 98dba93 commit cd07ad2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/com/databricks/jdbc/auth/SSLConnectionParametersTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public void testGetConnectionSocketFactoryRegistryWithSelfSignedCerts()
9292
when(mockContext.allowSelfSignedCerts()).thenReturn(true);
9393

9494
Registry<ConnectionSocketFactory> registry =
95-
ConfiguratorUtils.getConnectionSocketFactoryRegistry(mockContext);
95+
ConfiguratorUtils.createConnectionSocketFactoryRegistry(mockContext);
9696

9797
assertNotNull(registry, "Socket factory registry should not be null");
9898
}
@@ -107,7 +107,7 @@ public void testGetConnectionSocketFactoryRegistryWithSystemTrustStore() {
107107

108108
try {
109109
Registry<ConnectionSocketFactory> registry =
110-
ConfiguratorUtils.getConnectionSocketFactoryRegistry(mockContext);
110+
ConfiguratorUtils.createConnectionSocketFactoryRegistry(mockContext);
111111

112112
assertNotNull(registry, "Socket factory registry should not be null");
113113
} catch (Exception e) {

0 commit comments

Comments
 (0)