Skip to content

Commit 56c4821

Browse files
authored
Renamed cohorts for experiment reactivateUsersExperimentMay25. (#6149)
Task/Issue URL: https://app.asana.com/1/137249556945/task/1210391900429638?focus=true ### Description Updated cohort names in `ReactivateUsersToggles.kt` to use camelCase format: - Changed `duckplayer_prompt` to `duckplayerPrompt` - Changed `browser_prompt` to `browserPrompt` ### Steps to test this PR _Cohort naming_ - [ ] Verify that the cohort names are correctly updated in the codebase - [ ] Ensure that any existing references to these cohorts are updated or handle both naming formats ### NO UI changes --- - To see the specific tasks where the Asana app for GitHub is being used, see below: - https://app.asana.com/0/0/1210391900429638
1 parent c98dc40 commit 56c4821

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dax-prompts/dax-prompts-impl/src/main/java/com/duckduckgo/daxprompts/impl/ReactivateUsersToggles.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ interface ReactivateUsersToggles {
4242

4343
enum class Cohorts(override val cohortName: String) : CohortName {
4444
CONTROL("control"), // no Dax prompts
45-
VARIANT_DUCKPLAYER_PROMPT("duckplayer_prompt"), // show Duck Player Dax Prompt
46-
VARIANT_BROWSER_PROMPT("browser_prompt"), // show Browser Comparison Dax Prompt
45+
VARIANT_DUCKPLAYER_PROMPT("duckplayerPrompt"), // show Duck Player Dax Prompt
46+
VARIANT_BROWSER_PROMPT("browserPrompt"), // show Browser Comparison Dax Prompt
4747
}
4848

4949
companion object {

0 commit comments

Comments
 (0)