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:
authorRobert Speicher <rspeicher@gmail.com>2017-01-17 19:52:26 +0300
committerRobert Speicher <rspeicher@gmail.com>2017-01-18 00:02:09 +0300
commit8fac013d9c111c63977b3ccce58fb04495f10bc0 (patch)
tree08abac1db0397d5020d6a3339e7e74f4dd900835 /features/steps/user.rb
parent822bf2f91c536870848df7b6f333d81fe7c89ead (diff)
Remove repository trait from factories that don't need it in features
Diffstat (limited to 'features/steps/user.rb')
-rw-r--r--features/steps/user.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/user.rb b/features/steps/user.rb
index cd4ef681515..271c9b097d4 100644
--- a/features/steps/user.rb
+++ b/features/steps/user.rb
@@ -38,6 +38,6 @@ class Spinach::Features::User < Spinach::FeatureSteps
end
def contributed_project
- @contributed_project ||= create(:project, :public, :repository)
+ @contributed_project ||= create(:empty_project, :public)
end
end