From 881594100bdd75d46b4dde1a8cafb858a0bc2b56 Mon Sep 17 00:00:00 2001 From: Chengyuan Zhang Date: Mon, 30 Sep 2019 15:26:01 -0700 Subject: [PATCH] andriod-interop-testing: fix InteropTask construction failure with wrong parameters (#6223) --- .../android/integrationtest/InteropInstrumentationTest.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/android-interop-testing/app/src/androidTest/java/io/grpc/android/integrationtest/InteropInstrumentationTest.java b/android-interop-testing/app/src/androidTest/java/io/grpc/android/integrationtest/InteropInstrumentationTest.java index 47f6fc72dd..e6a2c85fda 100644 --- a/android-interop-testing/app/src/androidTest/java/io/grpc/android/integrationtest/InteropInstrumentationTest.java +++ b/android-interop-testing/app/src/androidTest/java/io/grpc/android/integrationtest/InteropInstrumentationTest.java @@ -26,10 +26,8 @@ import com.google.android.gms.common.GooglePlayServicesNotAvailableException; import com.google.android.gms.common.GooglePlayServicesRepairableException; import com.google.android.gms.security.ProviderInstaller; import com.google.common.util.concurrent.SettableFuture; -import io.grpc.ClientInterceptor; import io.grpc.android.integrationtest.InteropTask.Listener; import java.io.InputStream; -import java.util.ArrayList; import java.util.concurrent.TimeUnit; import org.junit.Before; import org.junit.Rule; @@ -127,7 +125,6 @@ public class InteropInstrumentationTest { new InteropTask( listener, TesterOkHttpChannelBuilder.build(host, port, serverHostOverride, useTls, testCa), - new ArrayList(), testCase) .execute(); String result = resultFuture.get(TIMEOUT_SECONDS, TimeUnit.SECONDS);