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

Commit 2334a20b authored by Taesu Lee's avatar Taesu Lee Committed by android-build-merger
Browse files

Merge "Fix testSetupDataCall failure"

am: b57d1ed5

Change-Id: I2406c89a14437908c39fe5fb92eecf1933fef966
parents 63405826 b57d1ed5
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1822,7 +1822,6 @@ public class RILTest extends TelephonyTest {
    }

    @Test
    @FlakyTest
    public void testSetupDataCall() throws Exception {
        DataProfile dp = new DataProfile.Builder()
                .setProfileId(PROFILE_ID)
@@ -1866,7 +1865,9 @@ public class RILTest extends TelephonyTest {
        assertEquals(APN_ENABLED, dpi.enabled);
        assertEquals(SUPPORTED_APNT_YPES_BITMAK, dpi.supportedApnTypesBitmap);
        assertEquals(ROAMING_PROTOCOL, ApnSetting.getProtocolIntFromString(dpi.protocol));
        assertEquals(BEARER_BITMASK, dpi.bearerBitmap);
        assertEquals(
                BEARER_BITMASK,
                ServiceState.convertBearerBitmaskToNetworkTypeBitmask(dpi.bearerBitmap >> 1));
        assertEquals(MTU, dpi.mtu);
    }