Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 374c751d authored by Jing Ji's avatar Jing Ji Committed by Automerger Merge Worker
Browse files

Merge "Fix the unit test failure in testBroadcastDeliveryEventReported" into...

Merge "Fix the unit test failure in testBroadcastDeliveryEventReported" into udc-dev am: 259a41c0 am: 679e92e7

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/22180597



Change-Id: If298ed8b051fbe3d681dfc70a7f292cdedc6a185
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents f363a7b5 679e92e7
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -52,6 +52,7 @@ import static org.mockito.ArgumentMatchers.anyInt;
import static org.mockito.ArgumentMatchers.anyLong;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.ArgumentMatchers.nullable;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;
@@ -1079,7 +1080,8 @@ public final class BroadcastQueueModernImplTest {
                eq(getUidForPackage(PACKAGE_GREEN)), anyInt(), eq(Intent.ACTION_TIME_TICK),
                eq(BROADCAST_DELIVERY_EVENT_REPORTED__RECEIVER_TYPE__MANIFEST),
                eq(BROADCAST_DELIVERY_EVENT_REPORTED__PROC_START_TYPE__PROCESS_START_TYPE_COLD),
                anyLong(), anyLong(), anyLong(), anyInt(), anyString(), anyString()), times(1));
                anyLong(), anyLong(), anyLong(), anyInt(), nullable(String.class), anyString()),
                times(1));
    }

    private Intent createPackageChangedIntent(int uid, List<String> componentNameList) {