summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Caitlin Shkuratov <caitlinshk@google.com> 2025-01-06 16:31:03 +0000
committer Caitlin Shkuratov <caitlinshk@google.com> 2025-01-08 20:56:52 +0000
commit3efa0fcd867859858f689943176bd7eae2f9919f (patch)
tree6e4b60d844425d04a9d21cb59b255c05b7c66687
parent2ccf44220d5c11e85218c5400d537a97e075c299 (diff)
[SB] Remove status_bar_call_chip_notification_icon flag.
This flag was launched in 24Q4, which has been released for a month. Bug: 354930838 Flag: EXEMPT launched flag removal Test: Post call notification -> verify call chip has the notification icon instead of a hard-coded phone icon Change-Id: I38c061ec6f103aab7fa68de38bb2e3bc3b6da2ac
-rw-r--r--packages/SystemUI/aconfig/systemui.aconfig7
-rw-r--r--packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModelTest.kt92
-rw-r--r--packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/ongoingcall/OngoingCallControllerTest.kt24
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModel.kt11
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/chips/ui/model/OngoingActivityChipModel.kt5
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/RenderNotificationListInteractor.kt9
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/notification/icon/IconManager.kt6
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/OngoingCallController.kt15
-rw-r--r--packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/icon/IconManagerTest.kt25
9 files changed, 20 insertions, 174 deletions
diff --git a/packages/SystemUI/aconfig/systemui.aconfig b/packages/SystemUI/aconfig/systemui.aconfig
index bb3c78663648..1d49e509e6a9 100644
--- a/packages/SystemUI/aconfig/systemui.aconfig
+++ b/packages/SystemUI/aconfig/systemui.aconfig
@@ -424,13 +424,6 @@ flag {
}
flag {
- name: "status_bar_call_chip_notification_icon"
- namespace: "systemui"
- description: "Use the small icon set on the notification for the status bar call chip"
- bug: "354930838"
-}
-
-flag {
name: "status_bar_signal_policy_refactor"
namespace: "systemui"
description: "Use a settings observer for airplane mode and make StatusBarSignalPolicy startable"
diff --git a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModelTest.kt b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModelTest.kt
index 0061c4142e8b..75d000b63d62 100644
--- a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModelTest.kt
+++ b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModelTest.kt
@@ -22,7 +22,6 @@ import android.platform.test.annotations.EnableFlags
import android.view.View
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.filters.SmallTest
-import com.android.systemui.Flags.FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON
import com.android.systemui.SysuiTestCase
import com.android.systemui.common.shared.model.Icon
import com.android.systemui.coroutines.collectLastValue
@@ -126,65 +125,8 @@ class CallChipViewModelTest : SysuiTestCase() {
}
@Test
- @DisableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON)
- fun chip_positiveStartTime_notifIconFlagOff_iconIsPhone() =
- testScope.runTest {
- val latest by collectLastValue(underTest.chip)
-
- repo.setOngoingCallState(
- inCallModel(startTimeMs = 1000, notificationIcon = createStatusBarIconViewOrNull())
- )
-
- assertThat((latest as OngoingActivityChipModel.Shown).icon)
- .isInstanceOf(OngoingActivityChipModel.ChipIcon.SingleColorIcon::class.java)
- val icon =
- (((latest as OngoingActivityChipModel.Shown).icon)
- as OngoingActivityChipModel.ChipIcon.SingleColorIcon)
- .impl as Icon.Resource
- assertThat(icon.res).isEqualTo(com.android.internal.R.drawable.ic_phone)
- assertThat(icon.contentDescription).isNotNull()
- }
-
- @Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON)
- @DisableFlags(StatusBarConnectedDisplays.FLAG_NAME)
- fun chip_positiveStartTime_notifIconFlagOn_iconIsNotifIcon() =
- testScope.runTest {
- val latest by collectLastValue(underTest.chip)
-
- val notifIcon = createStatusBarIconViewOrNull()
- repo.setOngoingCallState(inCallModel(startTimeMs = 1000, notificationIcon = notifIcon))
-
- assertThat((latest as OngoingActivityChipModel.Shown).icon)
- .isInstanceOf(OngoingActivityChipModel.ChipIcon.StatusBarView::class.java)
- val actualIcon =
- (((latest as OngoingActivityChipModel.Shown).icon)
- as OngoingActivityChipModel.ChipIcon.StatusBarView)
- .impl
- assertThat(actualIcon).isEqualTo(notifIcon)
- }
-
- @Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON, StatusBarConnectedDisplays.FLAG_NAME)
- fun chip_positiveStartTime_notifIconFlagOn_cdFlagOn_iconIsNotifKeyIcon() =
- testScope.runTest {
- val latest by collectLastValue(underTest.chip)
-
- repo.setOngoingCallState(
- inCallModel(
- startTimeMs = 1000,
- notificationIcon = createStatusBarIconViewOrNull(),
- notificationKey = "notifKey",
- )
- )
-
- assertThat((latest as OngoingActivityChipModel.Shown).icon)
- .isEqualTo(OngoingActivityChipModel.ChipIcon.StatusBarNotificationIcon("notifKey"))
- }
-
- @Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON, StatusBarConnectedDisplays.FLAG_NAME)
- fun chip_positiveStartTime_notifIconAndConnectedDisplaysFlagOn_iconIsNotifIcon() =
+ @EnableFlags(StatusBarConnectedDisplays.FLAG_NAME)
+ fun chip_positiveStartTime_connectedDisplaysFlagOn_iconIsNotifIcon() =
testScope.runTest {
val latest by collectLastValue(underTest.chip)
@@ -205,29 +147,8 @@ class CallChipViewModelTest : SysuiTestCase() {
}
@Test
- @DisableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON)
- fun chip_zeroStartTime_notifIconFlagOff_iconIsPhone() =
- testScope.runTest {
- val latest by collectLastValue(underTest.chip)
-
- repo.setOngoingCallState(
- inCallModel(startTimeMs = 0, notificationIcon = createStatusBarIconViewOrNull())
- )
-
- assertThat((latest as OngoingActivityChipModel.Shown).icon)
- .isInstanceOf(OngoingActivityChipModel.ChipIcon.SingleColorIcon::class.java)
- val icon =
- (((latest as OngoingActivityChipModel.Shown).icon)
- as OngoingActivityChipModel.ChipIcon.SingleColorIcon)
- .impl as Icon.Resource
- assertThat(icon.res).isEqualTo(com.android.internal.R.drawable.ic_phone)
- assertThat(icon.contentDescription).isNotNull()
- }
-
- @Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON)
@DisableFlags(StatusBarConnectedDisplays.FLAG_NAME)
- fun chip_zeroStartTime_notifIconFlagOn_cdFlagOff_iconIsNotifIcon() =
+ fun chip_zeroStartTime_cdFlagOff_iconIsNotifIcon() =
testScope.runTest {
val latest by collectLastValue(underTest.chip)
@@ -244,8 +165,8 @@ class CallChipViewModelTest : SysuiTestCase() {
}
@Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON, StatusBarConnectedDisplays.FLAG_NAME)
- fun chip_zeroStartTime_notifIconFlagOn_cdFlagOn_iconIsNotifKeyIcon() =
+ @EnableFlags(StatusBarConnectedDisplays.FLAG_NAME)
+ fun chip_zeroStartTime_cdFlagOn_iconIsNotifKeyIcon() =
testScope.runTest {
val latest by collectLastValue(underTest.chip)
@@ -262,7 +183,6 @@ class CallChipViewModelTest : SysuiTestCase() {
}
@Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON)
@DisableFlags(StatusBarConnectedDisplays.FLAG_NAME)
fun chip_notifIconFlagOn_butNullNotifIcon_cdFlagOff_iconIsPhone() =
testScope.runTest {
@@ -281,7 +201,7 @@ class CallChipViewModelTest : SysuiTestCase() {
}
@Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON, StatusBarConnectedDisplays.FLAG_NAME)
+ @EnableFlags(StatusBarConnectedDisplays.FLAG_NAME)
fun chip_notifIconFlagOn_butNullNotifIcon_iconNotifKey() =
testScope.runTest {
val latest by collectLastValue(underTest.chip)
diff --git a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/ongoingcall/OngoingCallControllerTest.kt b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/ongoingcall/OngoingCallControllerTest.kt
index 91b79e0b09db..b98409906f8d 100644
--- a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/ongoingcall/OngoingCallControllerTest.kt
+++ b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/ongoingcall/OngoingCallControllerTest.kt
@@ -28,7 +28,6 @@ import android.view.View
import android.widget.LinearLayout
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.filters.SmallTest
-import com.android.systemui.Flags.FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON
import com.android.systemui.Flags.FLAG_STATUS_BAR_SCREEN_SHARING_CHIPS
import com.android.systemui.SysuiTestCase
import com.android.systemui.concurrency.fakeExecutor
@@ -158,28 +157,7 @@ class OngoingCallControllerTest : SysuiTestCase() {
}
@Test
- @DisableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON)
- fun interactorHasOngoingCallNotif_notifIconFlagOff_repoHasNoNotifIcon() =
- testScope.runTest {
- val icon = mock<StatusBarIconView>()
- setNotifOnRepo(
- activeNotificationModel(
- key = "ongoingNotif",
- callType = CallType.Ongoing,
- uid = CALL_UID,
- statusBarChipIcon = icon,
- whenTime = 567,
- )
- )
-
- val repoState = ongoingCallRepository.ongoingCallState.value
- assertThat(repoState).isInstanceOf(OngoingCallModel.InCall::class.java)
- assertThat((repoState as OngoingCallModel.InCall).notificationIconView).isNull()
- }
-
- @Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON)
- fun interactorHasOngoingCallNotif_notifIconFlagOn_repoHasNotifIcon() =
+ fun interactorHasOngoingCallNotif_repoHasNotifIcon() =
testScope.runTest {
val icon = mock<StatusBarIconView>()
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModel.kt b/packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModel.kt
index de08e3891902..86954d569199 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModel.kt
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModel.kt
@@ -18,7 +18,6 @@ package com.android.systemui.statusbar.chips.call.ui.viewmodel
import android.view.View
import com.android.internal.jank.InteractionJankMonitor
-import com.android.systemui.Flags
import com.android.systemui.animation.ActivityTransitionAnimator
import com.android.systemui.common.shared.model.ContentDescription
import com.android.systemui.common.shared.model.Icon
@@ -64,18 +63,12 @@ constructor(
is OngoingCallModel.InCallWithVisibleApp -> OngoingActivityChipModel.Hidden()
is OngoingCallModel.InCall -> {
val icon =
- if (
- Flags.statusBarCallChipNotificationIcon() &&
- state.notificationIconView != null
- ) {
+ if (state.notificationIconView != null) {
StatusBarConnectedDisplays.assertInLegacyMode()
OngoingActivityChipModel.ChipIcon.StatusBarView(
state.notificationIconView
)
- } else if (
- StatusBarConnectedDisplays.isEnabled &&
- Flags.statusBarCallChipNotificationIcon()
- ) {
+ } else if (StatusBarConnectedDisplays.isEnabled) {
OngoingActivityChipModel.ChipIcon.StatusBarNotificationIcon(
state.notificationKey
)
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/chips/ui/model/OngoingActivityChipModel.kt b/packages/SystemUI/src/com/android/systemui/statusbar/chips/ui/model/OngoingActivityChipModel.kt
index c81e8e211507..956d99e46766 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/chips/ui/model/OngoingActivityChipModel.kt
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/chips/ui/model/OngoingActivityChipModel.kt
@@ -17,7 +17,6 @@
package com.android.systemui.statusbar.chips.ui.model
import android.view.View
-import com.android.systemui.Flags
import com.android.systemui.common.shared.model.Icon
import com.android.systemui.statusbar.StatusBarIconView
import com.android.systemui.statusbar.chips.notification.shared.StatusBarNotifChips
@@ -130,10 +129,6 @@ sealed class OngoingActivityChipModel {
*/
data class StatusBarView(val impl: StatusBarIconView) : ChipIcon {
init {
- check(Flags.statusBarCallChipNotificationIcon()) {
- "OngoingActivityChipModel.ChipIcon.StatusBarView created even though " +
- "Flags.statusBarCallChipNotificationIcon is not enabled"
- }
StatusBarConnectedDisplays.assertInLegacyMode()
}
}
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/RenderNotificationListInteractor.kt b/packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/RenderNotificationListInteractor.kt
index 042389f7fde7..fd5973e0ab3b 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/RenderNotificationListInteractor.kt
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/RenderNotificationListInteractor.kt
@@ -25,7 +25,6 @@ import android.graphics.drawable.Icon
import android.service.notification.StatusBarNotification
import android.util.ArrayMap
import com.android.app.tracing.traceSection
-import com.android.systemui.Flags
import com.android.systemui.statusbar.StatusBarIconView
import com.android.systemui.statusbar.notification.collection.GroupEntry
import com.android.systemui.statusbar.notification.collection.ListEntry
@@ -132,12 +131,6 @@ private class ActiveNotificationsStoreBuilder(
}
private fun NotificationEntry.toModel(): ActiveNotificationModel {
- val statusBarChipIcon =
- if (Flags.statusBarCallChipNotificationIcon()) {
- icons.statusBarChipIcon
- } else {
- null
- }
val promotedContent =
if (PromotedNotificationContentModel.featureFlagEnabled()) {
promotedNotificationContentModel
@@ -158,7 +151,7 @@ private class ActiveNotificationsStoreBuilder(
aodIcon = icons.aodIcon?.sourceIcon,
shelfIcon = icons.shelfIcon?.sourceIcon,
statusBarIcon = icons.statusBarIcon?.sourceIcon,
- statusBarChipIconView = statusBarChipIcon,
+ statusBarChipIconView = icons.statusBarChipIcon,
uid = sbn.uid,
packageName = sbn.packageName,
contentIntent = sbn.notification.contentIntent,
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/icon/IconManager.kt b/packages/SystemUI/src/com/android/systemui/statusbar/notification/icon/IconManager.kt
index b56a838a80a5..31375cc4a03a 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/icon/IconManager.kt
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/icon/IconManager.kt
@@ -162,9 +162,7 @@ constructor(
val sbIcon = iconBuilder.createIconView(entry)
sbIcon.scaleType = ImageView.ScaleType.CENTER_INSIDE
val sbChipIcon: StatusBarIconView?
- if (
- Flags.statusBarCallChipNotificationIcon() && !StatusBarConnectedDisplays.isEnabled
- ) {
+ if (!StatusBarConnectedDisplays.isEnabled) {
sbChipIcon = iconBuilder.createIconView(entry)
sbChipIcon.scaleType = ImageView.ScaleType.CENTER_INSIDE
} else {
@@ -186,7 +184,7 @@ constructor(
try {
setIcon(entry, normalIconDescriptor, sbIcon)
- if (Flags.statusBarCallChipNotificationIcon() && sbChipIcon != null) {
+ if (sbChipIcon != null) {
setIcon(entry, normalIconDescriptor, sbChipIcon)
}
setIcon(entry, sensitiveIconDescriptor, shelfIcon)
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/OngoingCallController.kt b/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/OngoingCallController.kt
index 7b1317953938..f56c2d5dc5e8 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/OngoingCallController.kt
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/OngoingCallController.kt
@@ -159,21 +159,12 @@ constructor(
logger.log(
TAG,
LogLevel.DEBUG,
- {
- bool1 = Flags.statusBarCallChipNotificationIcon()
- bool2 = currentInfo.notificationIconView != null
- },
- { "Creating OngoingCallModel.InCall. notifIconFlag=$bool1 hasIcon=$bool2" },
+ { bool1 = currentInfo.notificationIconView != null },
+ { "Creating OngoingCallModel.InCall. hasIcon=$bool1" },
)
- val icon =
- if (Flags.statusBarCallChipNotificationIcon()) {
- currentInfo.notificationIconView
- } else {
- null
- }
return OngoingCallModel.InCall(
startTimeMs = currentInfo.callStartTime,
- notificationIconView = icon,
+ notificationIconView = currentInfo.notificationIconView,
intent = currentInfo.intent,
notificationKey = currentInfo.key,
)
diff --git a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/icon/IconManagerTest.kt b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/icon/IconManagerTest.kt
index 57a12df0cfee..c4ef4f978ff8 100644
--- a/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/icon/IconManagerTest.kt
+++ b/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/icon/IconManagerTest.kt
@@ -35,7 +35,6 @@ import android.platform.test.annotations.EnableFlags
import androidx.test.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.filters.SmallTest
-import com.android.systemui.Flags.FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON
import com.android.systemui.SysuiTestCase
import com.android.systemui.controls.controller.AuxiliaryPersistenceWrapperTest.Companion.any
import com.android.systemui.statusbar.core.StatusBarConnectedDisplays
@@ -112,20 +111,8 @@ class IconManagerTest : SysuiTestCase() {
}
@Test
- @DisableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON)
- fun testCreateIcons_chipNotifIconFlagDisabled_statusBarChipIconIsNull() {
- val entry =
- notificationEntry(hasShortcut = true, hasMessageSenderIcon = true, hasLargeIcon = true)
- entry?.let { iconManager.createIcons(it) }
- testScope.runCurrent()
-
- assertThat(entry?.icons?.statusBarChipIcon).isNull()
- }
-
- @Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON)
@DisableFlags(StatusBarConnectedDisplays.FLAG_NAME)
- fun testCreateIcons_chipNotifIconFlagEnabled_cdFlagDisabled_statusBarChipIconIsNotNull() {
+ fun testCreateIcons_cdFlagDisabled_statusBarChipIconIsNotNull() {
val entry =
notificationEntry(hasShortcut = true, hasMessageSenderIcon = true, hasLargeIcon = true)
entry?.let { iconManager.createIcons(it) }
@@ -135,8 +122,8 @@ class IconManagerTest : SysuiTestCase() {
}
@Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON, StatusBarConnectedDisplays.FLAG_NAME)
- fun testCreateIcons_chipNotifIconFlagEnabled_cdFlagEnabled_statusBarChipIconIsNull() {
+ @EnableFlags(StatusBarConnectedDisplays.FLAG_NAME)
+ fun testCreateIcons_cdFlagEnabled_statusBarChipIconIsNull() {
val entry =
notificationEntry(hasShortcut = true, hasMessageSenderIcon = true, hasLargeIcon = true)
entry?.let { iconManager.createIcons(it) }
@@ -217,7 +204,6 @@ class IconManagerTest : SysuiTestCase() {
}
@Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON)
@DisableFlags(StatusBarConnectedDisplays.FLAG_NAME)
fun testCreateIcons_cdFlagDisabled_sensitiveImportantConversation() {
val entry =
@@ -233,7 +219,7 @@ class IconManagerTest : SysuiTestCase() {
}
@Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON, StatusBarConnectedDisplays.FLAG_NAME)
+ @EnableFlags(StatusBarConnectedDisplays.FLAG_NAME)
fun testCreateIcons_cdFlagEnabled_sensitiveImportantConversation() {
val entry =
notificationEntry(hasShortcut = true, hasMessageSenderIcon = true, hasLargeIcon = false)
@@ -248,7 +234,6 @@ class IconManagerTest : SysuiTestCase() {
}
@Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON)
@DisableFlags(StatusBarConnectedDisplays.FLAG_NAME)
fun testUpdateIcons_cdFlagDisabled_sensitiveImportantConversation() {
val entry =
@@ -266,7 +251,7 @@ class IconManagerTest : SysuiTestCase() {
}
@Test
- @EnableFlags(FLAG_STATUS_BAR_CALL_CHIP_NOTIFICATION_ICON, StatusBarConnectedDisplays.FLAG_NAME)
+ @EnableFlags(StatusBarConnectedDisplays.FLAG_NAME)
fun testUpdateIcons_cdFlagEnabled_sensitiveImportantConversation() {
val entry =
notificationEntry(hasShortcut = true, hasMessageSenderIcon = true, hasLargeIcon = false)