From fc03f2be9d3e0858d207015a5ff013a2bf03a77f Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Fri, 6 Oct 2023 14:35:09 -0700 Subject: [PATCH] Remove extra parenthesis --- .../java/io/grpc/testing/integration/StressTestClientTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interop-testing/src/test/java/io/grpc/testing/integration/StressTestClientTest.java b/interop-testing/src/test/java/io/grpc/testing/integration/StressTestClientTest.java index 301c7e56f0..c09a0cfeab 100644 --- a/interop-testing/src/test/java/io/grpc/testing/integration/StressTestClientTest.java +++ b/interop-testing/src/test/java/io/grpc/testing/integration/StressTestClientTest.java @@ -67,7 +67,7 @@ public class StressTestClientTest { assertEquals(1, client.stubsPerChannel()); assertEquals(8081, client.metricsPort()); assertEquals(-1, client.metricsLogRateSecs()); - assertNull((client.customCredentialsType())); + assertNull(client.customCredentialsType()); } @Test