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

Commit 83a0e702 authored by Aishwarya Mallampati's avatar Aishwarya Mallampati Committed by Android (Google) Code Review
Browse files

Merge "Close DB file after running unit tests." into udc-dev

parents c3f0f170 b507272f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -104,6 +104,7 @@ public class DatagramReceiverTest extends TelephonyTest {
    @After
    public void tearDown() throws Exception {
        logd(TAG + " tearDown");
        mFakeSatelliteProvider.shutdown();
        mDatagramReceiverUT.destroy();
        mDatagramReceiverUT = null;
        mResultListener = null;
+5 −0
Original line number Diff line number Diff line
@@ -95,4 +95,9 @@ public class FakeSatelliteProvider extends MockContentProvider {
        // Do nothing.
        return 0;
    }

    @Override
    public void shutdown() {
        mDbHelper.close();
    }
}