Fix the build break in InternetDialogControllerTest am: f811df0eb6
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16418521 Change-Id: I3dc5346f0ac4319cc4bebeb771f91ddd035b4a25
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user