PM-18773 update the keyName for the ChromeAutofill flag (#4812)

This commit is contained in:
Dave Severns
2025-03-03 10:31:02 -05:00
committed by GitHub
parent ac6ff98041
commit a88a173e00
2 changed files with 2 additions and 2 deletions

View File

@@ -218,7 +218,7 @@ sealed class FlagKey<out T : Any> {
* autofill.
*/
data object ChromeAutofill : FlagKey<Boolean>() {
override val keyName: String = "enable-pm-chrome-autofill"
override val keyName: String = "android-chrome-autofill"
override val defaultValue: Boolean = false
override val isRemotelyConfigured: Boolean = true
}

View File

@@ -79,7 +79,7 @@ class FlagKeyTest {
)
assertEquals(
FlagKey.ChromeAutofill.keyName,
"enable-pm-chrome-autofill",
"android-chrome-autofill",
)
}