diff options
Diffstat (limited to 'tests/unit/java/com/android/server/IpSecServiceRefcountedResourceTest.java')
| -rw-r--r-- | tests/unit/java/com/android/server/IpSecServiceRefcountedResourceTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/java/com/android/server/IpSecServiceRefcountedResourceTest.java b/tests/unit/java/com/android/server/IpSecServiceRefcountedResourceTest.java index 6957d51fe3..5c7ca6facd 100644 --- a/tests/unit/java/com/android/server/IpSecServiceRefcountedResourceTest.java +++ b/tests/unit/java/com/android/server/IpSecServiceRefcountedResourceTest.java @@ -57,14 +57,14 @@ import java.util.concurrent.ThreadLocalRandom; @DevSdkIgnoreRule.IgnoreUpTo(Build.VERSION_CODES.R) public class IpSecServiceRefcountedResourceTest { Context mMockContext; - IpSecService.IpSecServiceConfiguration mMockIpSecSrvConfig; + IpSecService.Dependencies mMockDeps; IpSecService mIpSecService; @Before public void setUp() throws Exception { mMockContext = mock(Context.class); - mMockIpSecSrvConfig = mock(IpSecService.IpSecServiceConfiguration.class); - mIpSecService = new IpSecService(mMockContext, mMockIpSecSrvConfig); + mMockDeps = mock(IpSecService.Dependencies.class); + mIpSecService = new IpSecService(mMockContext, mMockDeps); } private void assertResourceState( |
