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

Commit 24396c2c authored by Tyler Gunn's avatar Tyler Gunn
Browse files

Fix unit test.

...and thus the humble developer learns that even though a treehugger
build didn't finish after 6 hours, waiting longer would have caught the
trivial issue due to a missing git amend.

Test: Compile
Bug: 62076575
Change-Id: Iff6e9df3c878b4a5244ec8c39eb8c6dc3f1bcc57
parent 227b1160
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -224,7 +224,7 @@ public class ImsPhoneCallTrackerTest extends TelephonyTest {
        mImsConnectionStateListener.onFeatureCapabilityChanged(ImsServiceClass.MMTEL,
                featureEnableArray,
                featureDisableArray);
        waitForHandlerAction(mCTHander, 1000)
        waitForHandlerAction(mCTHander, 1000);
        assertTrue(mCTUT.isVolteEnabled());
        assertFalse(mCTUT.isVideoCallEnabled());
        // video call not enabled
@@ -236,7 +236,7 @@ public class ImsPhoneCallTrackerTest extends TelephonyTest {
        mImsConnectionStateListener.onFeatureCapabilityChanged(ImsServiceClass.MMTEL,
                featureEnableArray,
                featureDisableArray);
        waitForHandlerAction(mCTHander, 1000)
        waitForHandlerAction(mCTHander, 1000);
        assertTrue(mCTUT.isVideoCallEnabled());
        verify(mImsPhone, times(1)).notifyForVideoCapabilityChanged(eq(true));
    }