summaryrefslogtreecommitdiff
path: root/spec/factories/user_statuses.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-10-02 00:06:26 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-10-02 00:06:26 +0000
commit587794b4b8a6e919e77ee4abe8215fa291e6a91d (patch)
tree380d6578d1ab5902bb521071128bafd4f70472ef /spec/factories/user_statuses.rb
parente0bd3a45d9dc6c74cac1a33ea8c03d6d8334249b (diff)
downloadgitlab-ce-587794b4b8a6e919e77ee4abe8215fa291e6a91d.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories/user_statuses.rb')
-rw-r--r--spec/factories/user_statuses.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/factories/user_statuses.rb b/spec/factories/user_statuses.rb
index 9998ae9609c..dbed6031ce1 100644
--- a/spec/factories/user_statuses.rb
+++ b/spec/factories/user_statuses.rb
@@ -3,7 +3,7 @@
FactoryBot.define do
factory :user_status do
user
- emoji 'coffee'
- message 'I crave coffee'
+ emoji { 'coffee' }
+ message { 'I crave coffee' }
end
end