Skip to content

Commit 90abe55

Browse files
committed
style
1 parent 5be2aa2 commit 90abe55

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

xds/src/test/java/io/grpc/xds/internal/security/certprovider/CertProviderClientSslContextProviderTest.java

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -193,15 +193,16 @@ public void testProviderForClient_systemRootCerts() throws Exception {
193193
TestCertificateProvider.createAndRegisterProviderProvider(
194194
certificateProviderRegistry, watcherCaptor, "testca", 0);
195195
CertProviderClientSslContextProvider provider =
196-
getSslContextProvider(
197-
"gcp_id",
198-
null,
199-
CommonBootstrapperTestUtils.getTestBootstrapInfo(),
200-
/* alpnProtocols= */ null,
201-
CertificateValidationContext.newBuilder()
202-
.setSystemRootCerts(CertificateValidationContext.SystemRootCerts.getDefaultInstance())
203-
.build(),
204-
true);
196+
getSslContextProvider(
197+
"gcp_id",
198+
null,
199+
CommonBootstrapperTestUtils.getTestBootstrapInfo(),
200+
/* alpnProtocols= */ null,
201+
CertificateValidationContext.newBuilder()
202+
.setSystemRootCerts(
203+
CertificateValidationContext.SystemRootCerts.getDefaultInstance())
204+
.build(),
205+
true);
205206

206207
assertThat(provider.savedKey).isNull();
207208
assertThat(provider.savedCertChain).isNull();

0 commit comments

Comments
 (0)