summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2021-01-05 19:08:57 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2021-01-05 19:08:57 +0000
commitdf36a8f8b8dc99549ddc670174b61cee9b178c0b (patch)
treea2dc734ef16c3a2ff581f11c713041a41a0d5619
parentbf36a7f543a793e1e4cd8ca505990bcf8a8a4f17 (diff)
parent61e063c3b2072b962466f720daeb38c0952a6d7b (diff)
Merge "RemoteInputViewTest: Add FLAG_MUTABLE to PIs"
-rw-r--r--packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/RemoteInputViewTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/RemoteInputViewTest.java b/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/RemoteInputViewTest.java
index 4fb85ad1bb4d..a844d099d43a 100644
--- a/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/RemoteInputViewTest.java
+++ b/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/RemoteInputViewTest.java
@@ -102,7 +102,7 @@ public class RemoteInputViewTest extends SysuiTestCase {
private void setTestPendingIntent(RemoteInputView view) {
PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext, 0,
- new Intent(TEST_ACTION), 0);
+ new Intent(TEST_ACTION), PendingIntent.FLAG_MUTABLE);
RemoteInput input = new RemoteInput.Builder(TEST_RESULT_KEY).build();
view.setPendingIntent(pendingIntent);