From 005d25a07b21efbd4996e31a232fcf5393deb4d5 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 5 Aug 2018 13:50:49 +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 fcd5f3f07..652a6e982 100644 --- a/test/mfm.ts +++ b/test/mfm.ts @@ -42,7 +42,7 @@ describe('Text', () => { it('motion', () => { const tokens = analyze('(((Strawberry))) Pasta'); assert.deepEqual([ - { type: 'motion', content: '***Strawberry***', motion: 'Strawberry' }, + { type: 'motion', content: '(((Strawberry)))', motion: 'Strawberry' }, { type: 'text', content: ' Pasta' } ], tokens); });