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

Change-Id: I63899c42fac7f52866a2d2f6db060cf7918547c8
This commit is contained in:
Ryan Chan
2015-10-13 11:11:45 -04:00
committed by Jonathan Nieder
parent f08b133000
commit 458aed0508

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