From 06022d042c4c26ef7112df23b2632d702b78f250 Mon Sep 17 00:00:00 2001 From: Neil Lalonde Date: Fri, 13 Apr 2018 10:32:28 -0400 Subject: [PATCH] fix failing spec user_profile_spec --- spec/models/user_profile_spec.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/models/user_profile_spec.rb b/spec/models/user_profile_spec.rb index 0fffc455aaa..ea5aacf3272 100644 --- a/spec/models/user_profile_spec.rb +++ b/spec/models/user_profile_spec.rb @@ -118,7 +118,8 @@ describe UserProfile do end it 'supports emoji images' do - expect(user.user_profile.bio_excerpt(500, keep_emoji_images: true)).to eq("hello \":test:\" \":woman_scientist:t5:\" \":thinking:\"") + + expect(user.user_profile.bio_excerpt(500, keep_emoji_images: true)).to eq("hello \":test:\" \":woman_scientist:t5:\" \":thinking:\"") end end