diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-03-27 18:13:18 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-03-27 18:13:19 +0000 |
commit | 7f7773b37d41371517f212ffdda3cca5b7181632 (patch) | |
tree | bcb60f6cb83c41fff82e9fe38ed6b99242db225b | |
parent | f06fd7eebff96a7d0cacfc72a1c01ca34b129755 (diff) | |
parent | 99b966a68495bfaa0bf25b350da71fb5f689ff83 (diff) |
Merge "hotspot2: fix Passpoint unit test failures due to Mockito changes"
-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); |