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

Commit 23515199 authored by Weng Su's avatar Weng Su Committed by Automerger Merge Worker
Browse files

Fix the build break in InternetDialogControllerTest am: f811df0e

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16418521

Change-Id: I3dc5346f0ac4319cc4bebeb771f91ddd035b4a25
parents 3a40f836 f811df0e
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -564,8 +564,8 @@ public class InternetDialogControllerTest extends SysuiTestCase {
        mWifiEntries.add(mWifiEntry1);
        mWifiEntries.add(mWifiEntry2);
        mWifiEntries.add(mWifiEntry3);
        verify(mInternetDialogCallback)
                .onAccessPointsChanged(mWifiEntries, null /* connectedEntry */);
        verify(mInternetDialogCallback).onAccessPointsChanged(mWifiEntries,
                null /* connectedEntry */, true /* hasMoreEntry */);

        // Turn off airplane mode to has carrier WiFi, then Wi-Fi entries will keep the same.
        reset(mInternetDialogCallback);
@@ -573,8 +573,8 @@ public class InternetDialogControllerTest extends SysuiTestCase {

        mInternetDialogController.onAccessPointsChanged(mAccessPoints);

        verify(mInternetDialogCallback)
                .onAccessPointsChanged(mWifiEntries, null /* connectedEntry */);
        verify(mInternetDialogCallback).onAccessPointsChanged(mWifiEntries,
                null /* connectedEntry */, true /* hasMoreEntry */);
    }

    @Test