From b8e1162e2d6aff855f5510e27b739d01b3ecafcb Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 7 Nov 2018 21:30:28 +0900 Subject: [PATCH] Fix test --- test/mfm.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/mfm.ts b/test/mfm.ts index 5303e60e7b..83f04075e2 100644 --- a/test/mfm.ts +++ b/test/mfm.ts @@ -250,9 +250,9 @@ describe('Text', () => { const tokens4 = analyze('foo\n【bar】\nbuzz'); assert.deepEqual([ - { type: 'foo', content: 'foo\n' }, - { type: 'title', content: '【bar】\n', title: 'bar' }, - { type: 'foo', content: 'buzz' }, + { type: 'text', content: 'foo' }, + { type: 'title', content: '\n【bar】\n', title: 'bar' }, + { type: 'text', content: 'buzz' }, ], tokens4); }); });