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

Commit f811df0e authored by Weng Su's avatar Weng Su
Browse files

Fix the build break in InternetDialogControllerTest

Bug: 209774568
Test: manual test
atest -c InternetAdapterTest \
         InternetDialogControllerTest \
         InternetDialogTest

Change-Id: If470687953a024e8f84841dcb32fd312720ce034
parent d54867d6
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