From e542dcac301fc0c3911067c3cefddbd06af118c4 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 5 Nov 2018 20:40:39 +0900 Subject: [PATCH] Fix test --- test/mfm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mfm.ts b/test/mfm.ts index 10db317ed1..30b5f00140 100644 --- a/test/mfm.ts +++ b/test/mfm.ts @@ -194,7 +194,7 @@ describe('Text', () => { const tokens3 = analyze('🍎'); assert.deepEqual([ - { type: 'emoji', content: ':cat:', emoji: '🍎' } + { type: 'emoji', content: '🍎', emoji: '🍎' } ], tokens3); });