summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Qiu <zqiu@google.com>2017-03-27 18:27:03 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-03-27 18:27:03 +0000
commita905b8da5e09573fff79e53a07e6b4d53b697cc4 (patch)
tree693c4d457718aab9e23ffbc3cefa1146b7e07ef1
parent2a3d1bbe1226dca81a6e2387e781acfd77e0072b (diff)
parentb9194b0438c898d41f5370785b6e528a2bba3597 (diff)
Merge "hotspot2: fix Passpoint unit test failures due to Mockito changes" am: 7f7773b37d am: e8f4dde21b
am: b9194b0438 Change-Id: I599a470c78e7a75fd066650632c663f6a0243c2d
-rw-r--r--tests/wifitests/src/com/android/server/wifi/hotspot2/PasspointManagerTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/hotspot2/PasspointManagerTest.java b/tests/wifitests/src/com/android/server/wifi/hotspot2/PasspointManagerTest.java
index 32209a357..8008bf68e 100644
--- a/tests/wifitests/src/com/android/server/wifi/hotspot2/PasspointManagerTest.java
+++ b/tests/wifitests/src/com/android/server/wifi/hotspot2/PasspointManagerTest.java
@@ -123,7 +123,7 @@ public class PasspointManagerTest {
public void setUp() throws Exception {
initMocks(this);
when(mObjectFactory.makeAnqpCache(mClock)).thenReturn(mAnqpCache);
- when(mObjectFactory.makeANQPRequestManager(any(PasspointEventHandler.class), eq(mClock)))
+ when(mObjectFactory.makeANQPRequestManager(any(), eq(mClock)))
.thenReturn(mAnqpRequestManager);
mManager = new PasspointManager(mContext, mWifiNative, mWifiKeyStore, mClock,
mSimAccessor, mObjectFactory, mWifiConfigManager, mWifiConfigStore);