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

Commit b57d1ed5 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix testSetupDataCall failure"

parents 97b3405d 2b197587
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);
    }