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

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

Merge "Fix testSetupDataCall failure" am: b57d1ed5

am: 2334a20b

Change-Id: I64313dc14849aafdb14350ca38d04d7234066ded
parents e5cdb3ce 2334a20b
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);
    }