SettingsLibTest: Remove OsuProvider#mIcon

mIcon is never used, removing it since it uses @hide API
Icon#sameAs().

Bug: 145409537
Test: atest AccessPointTest WifiTrackerTest
Change-Id: Id1fe280731e2948c667e07ba8387dfcf2eca4c63
This commit is contained in:
David Su
2019-11-29 18:44:58 -08:00
parent 2a095b1fdc
commit 825accefdd
2 changed files with 2 additions and 2 deletions

View File

@@ -120,7 +120,7 @@ public class AccessPointTest {
private OsuProvider createOsuProvider() {
Map<String, String> friendlyNames = new HashMap<>();
friendlyNames.put("en", OSU_FRIENDLY_NAME);
return new OsuProvider((WifiSsid) null, friendlyNames, null, null, null, null, null);
return new OsuProvider((WifiSsid) null, friendlyNames, null, null, null, null);
}
@Before

View File

@@ -336,7 +336,7 @@ public class WifiTrackerTest {
private static OsuProvider buildOsuProvider(String friendlyName) {
Map<String, String> friendlyNames = new HashMap<>();
friendlyNames.put("en", friendlyName);
return new OsuProvider((WifiSsid) null, friendlyNames, null, null, null, null, null);
return new OsuProvider((WifiSsid) null, friendlyNames, null, null, null, null);
}
private WifiTracker createTrackerWithImmediateBroadcastsAndInjectInitialScanResults(