diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-09-10 15:56:33 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-09-10 15:56:33 +0200 |
commit | bf8013f1a4c5d6274d0b03f55098e3b4d1da3f4d (patch) | |
tree | 3c3a1c8f332fbbb662f9b025972631b8d1097f78 /spec/factories/ci | |
parent | 59c3a3239f338fc48d1a3707c4bd4e4aaa8c03df (diff) | |
download | gitlab-ce-bf8013f1a4c5d6274d0b03f55098e3b4d1da3f4d.tar.gz |
Fix most of project specs
Diffstat (limited to 'spec/factories/ci')
-rw-r--r-- | spec/factories/ci/runners.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/factories/ci/runners.rb b/spec/factories/ci/runners.rb index fec56b438fa..db759eca9ac 100644 --- a/spec/factories/ci/runners.rb +++ b/spec/factories/ci/runners.rb @@ -27,11 +27,11 @@ FactoryGirl.define do platform "darwin" - factory :shared_runner do + factory :ci_shared_runner do is_shared true end - factory :specific_runner do + factory :ci_specific_runner do is_shared false end end |