summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSarah Chin <sarahchin@google.com>2020-01-29 15:56:09 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-01-29 15:56:09 +0000
commit4f24606234cd65010c6e3bca404c889342e7bfcf (patch)
tree065f1ed1798dc1a3fb2416ad5910956eea43a54b
parent2e797cd4d4dcf89773d9ac3f70d958255e8f0571 (diff)
parent61b3923456589bd256868e01751cd6792cf7ae65 (diff)
Merge "Update Constructors for CellIdentity(Gsm|Lte)"
-rw-r--r--tests/unit/src/com/android/server/connectivity/NetworkMonitorTest.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/src/com/android/server/connectivity/NetworkMonitorTest.java b/tests/unit/src/com/android/server/connectivity/NetworkMonitorTest.java
index 7289ab4..7a34c59 100644
--- a/tests/unit/src/com/android/server/connectivity/NetworkMonitorTest.java
+++ b/tests/unit/src/com/android/server/connectivity/NetworkMonitorTest.java
@@ -129,6 +129,7 @@ import java.net.URL;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.util.Arrays;
+import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Random;
@@ -542,9 +543,10 @@ public class NetworkMonitorTest {
final CellInfoGsm cellInfoGsm2 = new CellInfoGsm();
final CellInfoLte cellInfoLte = new CellInfoLte();
final CellIdentityGsm cellIdentityGsm =
- new CellIdentityGsm(0, 0, 0, 0, "460", "01", "", "");
+ new CellIdentityGsm(0, 0, 0, 0, "460", "01", "", "", Collections.emptyList());
final CellIdentityLte cellIdentityLte =
- new CellIdentityLte(0, 0, 0, 0, 0, "466", "01", "", "");
+ new CellIdentityLte(0, 0, 0, 0, 0, "466", "01", "", "",
+ Collections.emptyList(), null);
cellInfoGsm1.setCellIdentity(cellIdentityGsm);
cellInfoGsm2.setCellIdentity(cellIdentityGsm);
cellInfoLte.setCellIdentity(cellIdentityLte);