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

Commit 20e79fd4 authored by Andy McFadden's avatar Andy McFadden
Browse files

Fix sim-eng build.

Not sure how this would build anywhere -- checked exception was not
checked.  Apparently only sim-eng cares.

Change-Id: I10bc7d0c41666fca55a7df60ef18517956097d9b
parent 8cc36720
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -124,7 +124,11 @@ public class PackageManagerHostTestUtils extends Assert {
        RemoteAndroidTestRunner testRunner = new RemoteAndroidTestRunner(
                pkgName, mDevice);
        CollectingTestRunListener listener = new CollectingTestRunListener();
        try {
            testRunner.run(listener);
        } catch (IOException ioe) {
            Log.w(LOG_TAG, "encountered IOException " + ioe);
        }
        return listener;
    }