aboutsummaryrefslogtreecommitdiff
path: root/android-interop-testing
diff options
context:
space:
mode:
authorEric Gribkoff <ericgribkoff@google.com>2018-08-29 13:28:02 -0700
committerGitHub <noreply@github.com>2018-08-29 13:28:02 -0700
commitf93695ac7053b2773997d1c9dd54d231b0232f7c (patch)
treea988115eed58cc1d77a890a6e640674ef17d7b93 /android-interop-testing
parenta18abfbf9f7d656f839cb45f6e065df0590182c9 (diff)
downloadgrpc-grpc-java-f93695ac7053b2773997d1c9dd54d231b0232f7c.tar.gz
android-interop-testing: correct order in assertEquals (#4810)
Diffstat (limited to 'android-interop-testing')
-rw-r--r--android-interop-testing/app/src/androidTest/java/io/grpc/android/integrationtest/InteropInstrumentationTest.java2
1 files changed, 1 insertions, 1 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 3fe6379ff..47f6fc72d 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
@@ -131,6 +131,6 @@ public class InteropInstrumentationTest {
testCase)
.execute();
String result = resultFuture.get(TIMEOUT_SECONDS, TimeUnit.SECONDS);
- assertEquals(testCase + " failed", result, InteropTask.SUCCESS_MESSAGE);
+ assertEquals(testCase + " failed", InteropTask.SUCCESS_MESSAGE, result);
}
}