summaryrefslogtreecommitdiff
path: root/features/steps/shared
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2017-08-02 15:25:52 -0400
committerRobert Speicher <rspeicher@gmail.com>2017-08-02 15:25:52 -0400
commitcf39d282a3c1ba2a5ce6e918c5144a05e2c06fee (patch)
tree783c723494843b2a93d680c69635869e5d2ff3e5 /features/steps/shared
parent88958e5a9cd364ae36f3d2837982cedb9239c3bc (diff)
downloadgitlab-ce-cf39d282a3c1ba2a5ce6e918c5144a05e2c06fee.tar.gz
Use `:empty_project` where possible in features/steps
Diffstat (limited to 'features/steps/shared')
-rw-r--r--features/steps/shared/project.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/shared/project.rb b/features/steps/shared/project.rb
index da1cdd9f897..846d546ed01 100644
--- a/features/steps/shared/project.rb
+++ b/features/steps/shared/project.rb
@@ -9,7 +9,7 @@ module SharedProject
step "I own a project in some group namespace" do
@group = create(:group, name: 'some group')
- @project = create(:project, namespace: @group)
+ @project = create(:empty_project, namespace: @group)
@project.team << [@user, :master]
end