diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-26 14:52:17 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-26 14:52:17 +0300 |
commit | 0a2a34a4d18d0489f7db6aad5b5518b503692b5b (patch) | |
tree | f169695667def43200565907636fae145469385d /spec/factories.rb | |
parent | 65b9768ccfbdc3de682d66430601cf3af1b2a2f8 (diff) | |
download | gitlab-ce-0a2a34a4d18d0489f7db6aad5b5518b503692b5b.tar.gz |
Ignore owner_id for Group in tests
Diffstat (limited to 'spec/factories.rb')
-rw-r--r-- | spec/factories.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/factories.rb b/spec/factories.rb index 4c5e687ac3e..56561fe4595 100644 --- a/spec/factories.rb +++ b/spec/factories.rb @@ -71,7 +71,6 @@ FactoryGirl.define do factory :group do sequence(:name) { |n| "group#{n}" } path { name.downcase.gsub(/\s/, '_') } - owner type 'Group' end |