summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author David Su <dysu@google.com> 2020-03-18 16:33:42 -0700
committer David Su <dysu@google.com> 2020-03-18 16:33:42 -0700
commit042ec9658e9c121eaae46cf62ace0fa2d50f7a57 (patch)
treece0a8ef35b772cd342bea175b1fea8253ddc9ac7
parent9663a531e161277c91f43d15e5b56b73f68bb7cf (diff)
WifiCandidatesTest: stop inheriting from ScanResult
ScanResult is becoming final. Bug: 149912516 Test: atest FrameworksWifiTests Change-Id: I2d0b4ab983787b5025e28dff80852d5644e0aa1a
-rw-r--r--service/tests/wifitests/src/com/android/server/wifi/WifiCandidatesTest.java17
1 files changed, 8 insertions, 9 deletions
diff --git a/service/tests/wifitests/src/com/android/server/wifi/WifiCandidatesTest.java b/service/tests/wifitests/src/com/android/server/wifi/WifiCandidatesTest.java
index 4b64f71a6c..b97b252484 100644
--- a/service/tests/wifitests/src/com/android/server/wifi/WifiCandidatesTest.java
+++ b/service/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();