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/award_emoji.rb
parente0bd3a45d9dc6c74cac1a33ea8c03d6d8334249b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories/award_emoji.rb')
-rw-r--r--spec/factories/award_emoji.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/factories/award_emoji.rb b/spec/factories/award_emoji.rb
index a8bb806381e..a430210ab49 100644
--- a/spec/factories/award_emoji.rb
+++ b/spec/factories/award_emoji.rb
@@ -2,7 +2,7 @@
FactoryBot.define do
factory :award_emoji do
- name "thumbsup"
+ name { "thumbsup" }
user
awardable factory: :issue
@@ -12,7 +12,7 @@ FactoryBot.define do
trait :upvote
trait :downvote do
- name "thumbsdown"
+ name { "thumbsdown" }
end
end
end