Increase the broadcast timeout duration in the tests.

In the legacy queue, it is posssible that the broadcast
timeout is elapsed before the onApplicationAttachedLocked()
callback is received, which will result in the broadcast
receiver getting discarded.

Bug: 289108400
Test: atest services/tests/mockingservicestests/src/com/android/server/am/BroadcastQueueTest.java
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:dcd5c460abe8aaa1e89d5204f3d34343becc8e30)
Merged-In: Ic3456f0711d09a5d1e5549a326ad056bde939546
Change-Id: Ic3456f0711d09a5d1e5549a326ad056bde939546
diff --git a/services/tests/mockingservicestests/src/com/android/server/am/BroadcastQueueTest.java b/services/tests/mockingservicestests/src/com/android/server/am/BroadcastQueueTest.java
index 72c5333..410ae35 100644
--- a/services/tests/mockingservicestests/src/com/android/server/am/BroadcastQueueTest.java
+++ b/services/tests/mockingservicestests/src/com/android/server/am/BroadcastQueueTest.java
@@ -328,7 +328,7 @@
                 eq(ActivityManager.PROCESS_STATE_LAST_ACTIVITY), any());
 
         mConstants = new BroadcastConstants(Settings.Global.BROADCAST_FG_CONSTANTS);
-        mConstants.TIMEOUT = 100;
+        mConstants.TIMEOUT = 200;
         mConstants.ALLOW_BG_ACTIVITY_START_TIMEOUT = 0;
         mConstants.PENDING_COLD_START_CHECK_INTERVAL_MILLIS = 500;