diff options
author | 2025-03-18 15:23:05 -0700 | |
---|---|---|
committer | 2025-03-18 15:23:05 -0700 | |
commit | baadb88bc4a48b9075c7f59f4ade060493d4bd05 (patch) | |
tree | 0bb1fe6dae81ce6faa24ee5bbf7786c8cf2e6f4a /tests | |
parent | c74a0961123efd89b350476e6d7a49b623e1d798 (diff) | |
parent | dbc5e635827c44e006c464dcb5822225c42e7ba3 (diff) |
Merge "frameworks/base: remove usages of deprecated Mockito matchers" into main
Diffstat (limited to 'tests')
-rw-r--r-- | tests/TelephonyCommonTests/src/com/android/internal/telephony/tests/SmsApplicationTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TelephonyCommonTests/src/com/android/internal/telephony/tests/SmsApplicationTest.java b/tests/TelephonyCommonTests/src/com/android/internal/telephony/tests/SmsApplicationTest.java index adefac64dbae..6846d489ecaa 100644 --- a/tests/TelephonyCommonTests/src/com/android/internal/telephony/tests/SmsApplicationTest.java +++ b/tests/TelephonyCommonTests/src/com/android/internal/telephony/tests/SmsApplicationTest.java @@ -231,7 +231,7 @@ public class SmsApplicationTest { .replacePreferredActivity(intentFilterCaptor.capture(), eq(IntentFilter.MATCH_CATEGORY_SCHEME | IntentFilter.MATCH_ADJUSTMENT_NORMAL), - isNotNull(List.class), + (List<ComponentName>)isNotNull(), eq(new ComponentName(TEST_COMPONENT_NAME.getPackageName(), SEND_TO_NAME))); Set<String> capturedSchemes = intentFilterCaptor.getAllValues().stream() |