Blob Blame History Raw
From b1373ca1d5813cdefe505cc8d535674e6e6647d6 Mon Sep 17 00:00:00 2001
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date: Fri, 1 Mar 2019 18:47:19 -0500
Subject: [PATCH] Fix tests against latest emoji package.

Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
---
 docs/data/docs.json             | 2 +-
 tpl/transform/init.go           | 2 +-
 tpl/transform/transform_test.go | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/data/docs.json b/docs/data/docs.json
index 4a68378a..ce732d1b 100644
--- a/docs/data/docs.json
+++ b/docs/data/docs.json
@@ -4060,7 +4060,7 @@
           "Examples": [
             [
               "{{ \"I :heart: Hugo\" | emojify }}",
-              "I ❤️ Hugo"
+              "I ❤ Hugo"
             ]
           ]
         },
diff --git a/tpl/transform/init.go b/tpl/transform/init.go
index 62cb0a9c..2783a513 100644
--- a/tpl/transform/init.go
+++ b/tpl/transform/init.go
@@ -32,7 +32,7 @@ func init() {
 		ns.AddMethodMapping(ctx.Emojify,
 			[]string{"emojify"},
 			[][2]string{
-				{`{{ "I :heart: Hugo" | emojify }}`, `I ❤️ Hugo`},
+				{`{{ "I :heart: Hugo" | emojify }}`, `I ❤ Hugo`},
 			},
 		)
 
diff --git a/tpl/transform/transform_test.go b/tpl/transform/transform_test.go
index a09ec6fb..6db2272d 100644
--- a/tpl/transform/transform_test.go
+++ b/tpl/transform/transform_test.go
@@ -41,7 +41,7 @@ func TestEmojify(t *testing.T) {
 		expect interface{}
 	}{
 		{":notamoji:", template.HTML(":notamoji:")},
-		{"I :heart: Hugo", template.HTML("I ❤️ Hugo")},
+		{"I :heart: Hugo", template.HTML("I ❤ Hugo")},
 		// errors
 		{tstNoStringer{}, false},
 	} {
-- 
2.20.1