diff options
author | Nathan Harold <nharold@google.com> | 2020-03-04 02:03:54 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-03-04 02:03:54 +0000 |
commit | 8d8c9a7f3363a070c845717d1c85a343a1bae2a1 (patch) | |
tree | a44b3856475884aa0c178f7b4e58eccf210b38d4 | |
parent | 37c22fc62bb0d69bd7c28fd2f1e6e4d7bf941dcf (diff) | |
parent | f87c9e1f80b1595d1b85e78bf59ca84bd27dd85a (diff) |
Merge "Update Constructor of CellIdentityLte" into rvc-dev
-rw-r--r-- | tests/unit/src/com/android/server/connectivity/NetworkMonitorTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/src/com/android/server/connectivity/NetworkMonitorTest.java b/tests/unit/src/com/android/server/connectivity/NetworkMonitorTest.java index a81cacd..b2492aa 100644 --- a/tests/unit/src/com/android/server/connectivity/NetworkMonitorTest.java +++ b/tests/unit/src/com/android/server/connectivity/NetworkMonitorTest.java @@ -639,7 +639,7 @@ public class NetworkMonitorTest { int bandwidth, String mccStr, String mncStr, String alphal, String alphas) throws ReflectiveOperationException { if (ShimUtils.isReleaseOrDevelopmentApiAbove(Build.VERSION_CODES.Q)) { - return new CellIdentityLte(ci, pci, tac, earfcn, Collections.emptyList() /* bands */, + return new CellIdentityLte(ci, pci, tac, earfcn, new int[] {} /* bands */, bandwidth, mccStr, mncStr, alphal, alphas, Collections.emptyList() /* additionalPlmns */, null /* csgInfo */); } else { |