Skip to content

Commit

Permalink
Turn on PasswordManagerSync feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaisting-livefront committed Oct 30, 2024
1 parent bcc7e67 commit 5092293
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ sealed class LocalFeatureFlag<out T : Any>(
*/
data object PasswordManagerSync : LocalFeatureFlag<Boolean>(
name = "enable-password-manager-sync-android",
defaultValue = false,
defaultValue = true,
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ class FeatureFlagManagerTest {
}

@Test
fun `PasswordManagerSync should default to false`() {
assertFalse(LocalFeatureFlag.PasswordManagerSync.defaultValue)
fun `PasswordManagerSync should default to true`() {
assertTrue(LocalFeatureFlag.PasswordManagerSync.defaultValue)
}
}

Expand Down

0 comments on commit 5092293

Please sign in to comment.