diff options
| author | 2025-01-15 14:11:21 -0500 | |
|---|---|---|
| committer | 2025-01-15 14:13:05 -0500 | |
| commit | 7307fb01dfa6fc955e49bd4f89fd4d02fe34b75a (patch) | |
| tree | 8983e04bb5d566b9b932ee20dff57598c7c480cf | |
| parent | 00570e2663f12acb623be5986cf10408ee803b11 (diff) | |
Enable RON API flag for ProgressStyle test case
Bug: 387309682
Test: atest PromotedNotificationContentExtractorImplTest
Flag: EXEMPT test change
Change-Id: I8159905dd3a451ba3f13d457fe5abf7e8c068772
| -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)) |