Merge "Fix typo "thew" -> "threw" in AndroidTestRunner"

This commit is contained in:
Jonathan Nieder
2020-08-04 14:35:43 +00:00
committed by Gerrit Code Review

View File

@@ -125,7 +125,7 @@ public class AndroidTestRunner extends BaseTestRunner {
} catch (IllegalArgumentException e) {
runFailed("Illegal argument passed to constructor. Class: " + testClass.getName());
} catch (InvocationTargetException e) {
runFailed("Constructor thew an exception. Class: " + testClass.getName());
runFailed("Constructor threw an exception. Class: " + testClass.getName());
}
return null;
}