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

Commit b68eecc2 authored by Thomas Stuart's avatar Thomas Stuart Committed by Android (Google) Code Review
Browse files

Merge "remove CallControl#close()"

parents 103783b7 eaea75ec
Loading
Loading
Loading
Loading
+0 −13
Original line number Diff line number Diff line
@@ -75,17 +75,4 @@ public class CallControlTest extends TelecomTestCase {
                control.setInactive(Runnable::run, result -> {
                }));
    }

    @Test
    public void testClose() {
        // GIVEN
        CallControl control = new CallControl(CALL_ID_1, mICallControl, mRepository, mHandle);

        // WHEN
        control.close();

        // THEN
        verify(mRepository, times(1))
                .removeCallFromServiceWrapper(mHandle, CALL_ID_1);
    }
}