Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/helpers/stub_saas_features.rb')
-rw-r--r--spec/support/helpers/stub_saas_features.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/support/helpers/stub_saas_features.rb b/spec/support/helpers/stub_saas_features.rb
index e344888cb8c..d0aa7108a6a 100644
--- a/spec/support/helpers/stub_saas_features.rb
+++ b/spec/support/helpers/stub_saas_features.rb
@@ -6,9 +6,9 @@ module StubSaasFeatures
# @param [Hash] features where key is feature name and value is boolean whether enabled or not.
#
# Examples
- # - `stub_saas_features('onboarding' => false)` ... Disable `onboarding`
+ # - `stub_saas_features(onboarding: false)` ... Disable `onboarding`
# SaaS feature globally.
- # - `stub_saas_features('onboarding' => true)` ... Enable `onboarding`
+ # - `stub_saas_features(onboarding: true)` ... Enable `onboarding`
# SaaS feature globally.
def stub_saas_features(features)
features.each do |feature_name, value|