Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 458aed05 authored by Ryan Chan's avatar Ryan Chan Committed by Jonathan Nieder
Browse files

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

Change-Id: I63899c42fac7f52866a2d2f6db060cf7918547c8
parent f08b1330
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }