Fix cts fail for android.autofillservice.cts.augmented

In these tests, they expected to get onFillRequest within 1 second
after calling startSession. When the time out occurs for IME callback
InlineSuggestionsRequest, it will still cause onFillRequest to be
called. After chaning the time out of InlineSuggestion from 200ms to
1000ms, it will cause the test not to be able to get get onFillRequest
within 1 second.
We can extend the time out to fix these tests first.

Bug: 154661868
Test: atest CtsAutoFillServiceTestCases
Change-Id: If40ee5591e4e296f1c87997d29bf7ef7610d35a5
diff --git a/tests/autofillservice/src/android/autofillservice/cts/augmented/AugmentedTimeouts.java b/tests/autofillservice/src/android/autofillservice/cts/augmented/AugmentedTimeouts.java
index 7bfdfc8..2eef6e3 100644
--- a/tests/autofillservice/src/android/autofillservice/cts/augmented/AugmentedTimeouts.java
+++ b/tests/autofillservice/src/android/autofillservice/cts/augmented/AugmentedTimeouts.java
@@ -23,7 +23,7 @@
  */
 final class AugmentedTimeouts {
 
-    private static final long ONE_TIMEOUT_TO_RULE_THEN_ALL_MS = 1_000;
+    private static final long ONE_TIMEOUT_TO_RULE_THEN_ALL_MS = 1_500;
     private static final long ONE_NAPTIME_TO_RULE_THEN_ALL_MS = 3_000;
 
     /**