diff options
author | Michael Wright <michaelwr@google.com> | 2020-03-20 19:02:10 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-03-20 19:02:10 +0000 |
commit | f1e872476a9d91997530d6e77e33bd6da977f296 (patch) | |
tree | 1d94515b1a0f80900397f39ad8de04fb0c63346d | |
parent | b5df0d1c07406d2b0bdf6789721267cf4a8dd941 (diff) | |
parent | ba7d0b05740cb81479c692cf47ae3d3e37832535 (diff) |
Merge "WifiCandidatesTest: stop inheriting from ScanResult" into rvc-dev
-rw-r--r-- | tests/wifitests/src/com/android/server/wifi/WifiCandidatesTest.java | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/WifiCandidatesTest.java b/tests/wifitests/src/com/android/server/wifi/WifiCandidatesTest.java index 4b64f71a6..b97b25248 100644 --- a/tests/wifitests/src/com/android/server/wifi/WifiCandidatesTest.java +++ b/tests/wifitests/src/com/android/server/wifi/WifiCandidatesTest.java @@ -66,16 +66,15 @@ public class WifiCandidatesTest extends WifiBaseTest { mWifiCandidates = new WifiCandidates(mWifiScoreCard, mContext); mConfig1 = WifiConfigurationTestUtil.createOpenNetwork(); - mScanResult1 = new ScanResult() {{ - SSID = removeEnclosingQuotes(mConfig1.SSID); - capabilities = "[ESS]"; - BSSID = "00:00:00:00:00:01"; - }}; + mScanResult1 = new ScanResult(); + mScanResult1.SSID = removeEnclosingQuotes(mConfig1.SSID); + mScanResult1.capabilities = "[ESS]"; + mScanResult1.BSSID = "00:00:00:00:00:01"; + mConfig2 = WifiConfigurationTestUtil.createEphemeralNetwork(); - mScanResult2 = new ScanResult() {{ - SSID = removeEnclosingQuotes(mConfig2.SSID); - capabilities = "[ESS]"; - }}; + mScanResult2 = new ScanResult(); + mScanResult2.SSID = removeEnclosingQuotes(mConfig2.SSID); + mScanResult2.capabilities = "[ESS]"; doReturn(mScanResult1).when(mScanDetail1).getScanResult(); doReturn(mScanResult2).when(mScanDetail2).getScanResult(); |