From f93695ac7053b2773997d1c9dd54d231b0232f7c Mon Sep 17 00:00:00 2001 From: Eric Gribkoff Date: Wed, 29 Aug 2018 13:28:02 -0700 Subject: [PATCH] android-interop-testing: correct order in assertEquals (#4810) --- .../android/integrationtest/InteropInstrumentationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 3fe6379ff6..47f6fc72dd 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); } }