Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
ca877e93
Commit
ca877e93
authored
Nov 21, 2017
by
ayufanpl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test failures due to implicitly-enabled-features
parent
9d6e8660
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
spec/ee/spec/features/groups/pipeline_quota_spec.rb
spec/ee/spec/features/groups/pipeline_quota_spec.rb
+1
-1
spec/ee/spec/services/ee/ci/register_job_service_spec.rb
spec/ee/spec/services/ee/ci/register_job_service_spec.rb
+2
-2
No files found.
spec/ee/spec/features/groups/pipeline_quota_spec.rb
View file @
ca877e93
...
...
@@ -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
...
...
spec/ee/spec/services/ee/ci/register_job_service_spec.rb
View file @
ca877e93
...
...
@@ -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
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment