Commit ca877e93 authored by ayufanpl's avatar ayufanpl

Fix test failures due to implicitly-enabled-features

parent 9d6e8660
......@@ -127,7 +127,7 @@ feature 'Groups > Pipeline Quota' do
context 'when accessing subgroup' do
let(:root_ancestor) { create(:group) }
let(:group) { create(:group, :with_used_build_minutes_limit, parent: root_ancestor) }
let(:group) { create(:group, parent: root_ancestor) }
it 'does not show subproject' do
visit_pipeline_quota_page
......
......@@ -64,8 +64,8 @@ module Ci
end
context 'when group is subgroup' do
let!(:root_ancestor) { create(:group, shared_runners_minutes_limit: 10) }
let!(:group) { create(:group, parent: root_ancestor, shared_runners_minutes_limit: 10) }
let!(:root_ancestor) { create(:group) }
let!(:group) { create(:group, parent: root_ancestor) }
let!(:project) { create :project, shared_runners_enabled: true, group: group }
let(:build) { execute(shared_runner) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment