diff options
| author | 2025-01-16 09:49:49 -0800 | |
|---|---|---|
| committer | 2025-01-16 09:49:49 -0800 | |
| commit | a32c257efd018e972025d47306312b16b64f26a3 (patch) | |
| tree | 566271677a7e1fc662f612cd39487c0fdc54da9c | |
| parent | c90e9b00ec298e50ae976b88aea712dbb30ee53f (diff) | |
| parent | 7307fb01dfa6fc955e49bd4f89fd4d02fe34b75a (diff) | |
Merge "Enable RON API flag for ProgressStyle test case" into main
| -rw-r--r-- | packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/promoted/PromotedNotificationContentExtractorImplTest.kt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/promoted/PromotedNotificationContentExtractorImplTest.kt b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/promoted/PromotedNotificationContentExtractorImplTest.kt index 92271198cac0..8d90d38a9eca 100644 --- a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/promoted/PromotedNotificationContentExtractorImplTest.kt +++ b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/promoted/PromotedNotificationContentExtractorImplTest.kt @@ -212,7 +212,11 @@ class PromotedNotificationContentExtractorImplTest : SysuiTestCase() { } @Test - @EnableFlags(PromotedNotificationUi.FLAG_NAME, StatusBarNotifChips.FLAG_NAME) + @EnableFlags( + PromotedNotificationUi.FLAG_NAME, + StatusBarNotifChips.FLAG_NAME, + android.app.Flags.FLAG_API_RICH_ONGOING, + ) fun extractContent_fromProgressStyle() { val entry = createEntry { setStyle(ProgressStyle().addProgressSegment(Segment(100)).setProgress(75)) |