diff options
| author | 2024-03-06 00:41:38 +0000 | |
|---|---|---|
| committer | 2024-03-06 00:41:38 +0000 | |
| commit | 729b91d11c5213cb5f440c63f24925cd55e54dbd (patch) | |
| tree | ffb0c679025e191eaa617fe7cf4f13c7a43a32e8 | |
| parent | 203c9b929bf1dd05ee4de16f900c3ca327823c7f (diff) | |
| parent | 4c1a704a78e4e6865837c1a3135588bc3cdac5b7 (diff) | |
Merge "Use ArgumentMatchers to replace deprecated org.mockito.Matchers" into main
| -rw-r--r-- | services/tests/VpnTests/java/android/net/VpnManagerTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/tests/VpnTests/java/android/net/VpnManagerTest.java b/services/tests/VpnTests/java/android/net/VpnManagerTest.java index 0d55102b07b2..365b4d1c25f8 100644 --- a/services/tests/VpnTests/java/android/net/VpnManagerTest.java +++ b/services/tests/VpnTests/java/android/net/VpnManagerTest.java @@ -20,8 +20,8 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assume.assumeFalse; -import static org.mockito.Matchers.any; -import static org.mockito.Matchers.eq; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; |