diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-10-22 11:31:16 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-10-22 11:31:16 +0000 |
commit | 905c1110b08f93a19661cf42a276c7ea90d0a0ff (patch) | |
tree | 756d138db422392c00471ab06acdff92c5a9b69c /spec/factories/labels.rb | |
parent | 50d93f8d1686950fc58dda4823c4835fd0d8c14b (diff) | |
download | gitlab-ce-905c1110b08f93a19661cf42a276c7ea90d0a0ff.tar.gz |
Add latest changes from gitlab-org/gitlab@12-4-stable-ee
Diffstat (limited to 'spec/factories/labels.rb')
-rw-r--r-- | spec/factories/labels.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/factories/labels.rb b/spec/factories/labels.rb index 3eed750be03..89fcd8b1a9d 100644 --- a/spec/factories/labels.rb +++ b/spec/factories/labels.rb @@ -3,14 +3,14 @@ FactoryBot.define do trait :base_label do title { generate(:label_title) } - color "#990000" + color { "#990000" } end factory :label, traits: [:base_label], class: ProjectLabel do project transient do - priority nil + priority { nil } end after(:create) do |label, evaluator| |