mirror of https://github.com/grpc/grpc-java.git
android-interop-testing: correct order in assertEquals (#4810)
This commit is contained in:
parent
a18abfbf9f
commit
f93695ac70
|
|
@ -131,6 +131,6 @@ public class InteropInstrumentationTest {
|
||||||
testCase)
|
testCase)
|
||||||
.execute();
|
.execute();
|
||||||
String result = resultFuture.get(TIMEOUT_SECONDS, TimeUnit.SECONDS);
|
String result = resultFuture.get(TIMEOUT_SECONDS, TimeUnit.SECONDS);
|
||||||
assertEquals(testCase + " failed", result, InteropTask.SUCCESS_MESSAGE);
|
assertEquals(testCase + " failed", InteropTask.SUCCESS_MESSAGE, result);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue