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:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-10-02 03:06:26 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-10-02 03:06:26 +0300
commit587794b4b8a6e919e77ee4abe8215fa291e6a91d (patch)
tree380d6578d1ab5902bb521071128bafd4f70472ef /spec/factories/labels.rb
parente0bd3a45d9dc6c74cac1a33ea8c03d6d8334249b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories/labels.rb')
-rw-r--r--spec/factories/labels.rb4
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|