diff --git a/test/javascripts/lib/emoji-test.js.es6 b/test/javascripts/lib/emoji-test.js.es6 index fcf2c92ee..c141ba444 100644 --- a/test/javascripts/lib/emoji-test.js.es6 +++ b/test/javascripts/lib/emoji-test.js.es6 @@ -10,12 +10,12 @@ test("Emoji.unescape", function(){ testUnescape("Not emoji :O) :frog) :smile)", "Not emoji :O) :frog) :smile)", "title without emoji"); testUnescape("Not emoji :frog :smile", "Not emoji :frog :smile", "end colon is not optional"); - testUnescape("emoticons :)", "emoticons smile", "emoticons are still supported"); + testUnescape("emoticons :)", "emoticons slightly_smiling", "emoticons are still supported"); testUnescape("With emoji :O: :frog: :smile:", "With emoji O frog smile", "title with emoji"); testUnescape("a:smile:a", "a:smile:a", "word characters not allowed next to emoji"); - testUnescape("(:frog:) :)", "(frog) smile", "non-word characters allowed next to emoji"); + testUnescape("(:frog:) :)", "(frog) slightly_smiling", "non-word characters allowed next to emoji"); testUnescape(":smile: hi", "smile hi", "start of line"); testUnescape("hi :smile:", "hi smile", "end of line"); diff --git a/test/javascripts/models/topic-test.js.es6 b/test/javascripts/models/topic-test.js.es6 index 3aab0b415..bd18bcf0d 100644 --- a/test/javascripts/models/topic-test.js.es6 +++ b/test/javascripts/models/topic-test.js.es6 @@ -76,6 +76,6 @@ test("recover", function() { test('fancyTitle', function() { var topic = Topic.create({ fancy_title: ":smile: with all :) the emojis :pear::peach:" }); equal(topic.get('fancyTitle'), - "smile with all smile the emojis pearpeach", + "smile with all slightly_smiling the emojis pearpeach", "supports emojis"); });