android-interop-testing: correct order in assertEquals (#4810)

This commit is contained in:
Eric Gribkoff 2018-08-29 13:28:02 -07:00 committed by GitHub
parent a18abfbf9f
commit f93695ac70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);
} }
} }