Skip to content

Commit 646b424

Browse files
committed
ref(onboarding): Update acceptance test feature flag to match experiment
Rename organizations:onboarding-scm to organizations:onboarding-scm-experiment to match the useExperiment hook now used in the onboarding component.
1 parent b247c41 commit 646b424

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/acceptance/test_scm_onboarding.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def test_scm_onboarding_happy_path(self) -> None:
6868
with (
6969
self.feature(
7070
{
71-
"organizations:onboarding-scm": True,
71+
"organizations:onboarding-scm-experiment": True,
7272
"organizations:integrations-github-platform-detection": True,
7373
}
7474
),
@@ -122,7 +122,7 @@ def test_scm_onboarding_happy_path(self) -> None:
122122

123123
def test_scm_onboarding_skip_integration(self) -> None:
124124
"""Skip flow: welcome → skip connect → manual platform → create project."""
125-
with self.feature({"organizations:onboarding-scm": True}):
125+
with self.feature({"organizations:onboarding-scm-experiment": True}):
126126
self.start_onboarding()
127127

128128
# SCM Connect: skip
@@ -178,7 +178,7 @@ def test_scm_onboarding_with_integration_install(self) -> None:
178178
with (
179179
self.feature(
180180
{
181-
"organizations:onboarding-scm": True,
181+
"organizations:onboarding-scm-experiment": True,
182182
"organizations:integrations-github-platform-detection": True,
183183
}
184184
),
@@ -279,7 +279,7 @@ def test_scm_onboarding_detection_error_falls_back_to_manual_picker(self) -> Non
279279
with (
280280
self.feature(
281281
{
282-
"organizations:onboarding-scm": True,
282+
"organizations:onboarding-scm-experiment": True,
283283
"organizations:integrations-github-platform-detection": True,
284284
}
285285
),
@@ -339,7 +339,7 @@ def test_scm_onboarding_repo_search_no_results(self) -> None:
339339
self.create_github_integration()
340340

341341
with (
342-
self.feature({"organizations:onboarding-scm": True}),
342+
self.feature({"organizations:onboarding-scm-experiment": True}),
343343
mock.patch(
344344
"sentry.integrations.github.integration.GitHubIntegration.get_repositories",
345345
return_value=[],

0 commit comments

Comments
 (0)