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/migrations/add_web_hook_calls_to_plan_limits_paid_tiers_spec.rb')
-rw-r--r--spec/migrations/add_web_hook_calls_to_plan_limits_paid_tiers_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/migrations/add_web_hook_calls_to_plan_limits_paid_tiers_spec.rb b/spec/migrations/add_web_hook_calls_to_plan_limits_paid_tiers_spec.rb
index 63ad9367503..0ad99be1c7b 100644
--- a/spec/migrations/add_web_hook_calls_to_plan_limits_paid_tiers_spec.rb
+++ b/spec/migrations/add_web_hook_calls_to_plan_limits_paid_tiers_spec.rb
@@ -3,9 +3,9 @@
require 'spec_helper'
require_migration!
-RSpec.describe AddWebHookCallsToPlanLimitsPaidTiers do
- let_it_be(:plans) { table(:plans) }
- let_it_be(:plan_limits) { table(:plan_limits) }
+RSpec.describe AddWebHookCallsToPlanLimitsPaidTiers, feature_category: :purchase do
+ let!(:plans) { table(:plans) }
+ let!(:plan_limits) { table(:plan_limits) }
context 'when on Gitlab.com' do
let(:free_plan) { plans.create!(name: 'free') }