Skip to content

Commit 6cf705c

Browse files
committed
Fix test compilation
1 parent c677a27 commit 6cf705c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/io/split/android/client/storage/general/GeneralInfoStorageImplTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ public void testSerializeAndStoreHttpProxy() {
267267

268268
HttpProxy httpProxy = HttpProxy.newBuilder(testHost, testPort)
269269
.basicAuth(testUsername, testPassword)
270-
.mtlsAuth(clientCertStream, clientKeyStream)
270+
.mtls(clientCertStream, clientKeyStream)
271271
.proxyCacert(caCertStream)
272272
.credentialsProvider(credentialsProvider)
273273
.build();

src/test/java/io/split/android/client/utils/HttpProxySerializerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public String getPassword() {
5656
// Create the HttpProxy object
5757
mHttpProxy = HttpProxy.newBuilder(TEST_HOST, TEST_PORT)
5858
.basicAuth(TEST_USERNAME, TEST_PASSWORD)
59-
.mtlsAuth(clientCertStream, clientKeyStream)
59+
.mtls(clientCertStream, clientKeyStream)
6060
.proxyCacert(caCertStream)
6161
.credentialsProvider(credentialsProvider)
6262
.build();

0 commit comments

Comments
 (0)