diff options
author | Peter Qiu <zqiu@google.com> | 2017-03-27 18:23:29 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-03-27 18:23:29 +0000 |
commit | b9194b0438c898d41f5370785b6e528a2bba3597 (patch) | |
tree | bcb60f6cb83c41fff82e9fe38ed6b99242db225b | |
parent | a687043ca490aac67e06c5c52644fc2d0e8a5aae (diff) | |
parent | e8f4dde21b21196275ef7ce5da9f7c809112f907 (diff) |
Merge "hotspot2: fix Passpoint unit test failures due to Mockito changes" am: 7f7773b37d
am: e8f4dde21b
Change-Id: Ic2cca94158b6f62611fb9d8838ca897456e2d874
-rw-r--r-- | tests/wifitests/src/com/android/server/wifi/hotspot2/PasspointManagerTest.java | 2 |
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); |