This commit is contained in:
syuilo 2018-11-03 15:28:11 +09:00
parent a0a3786b69
commit fcc7d48ba6

View file

@ -234,7 +234,7 @@ describe('Text', () => {
const tokens3 = analyze('a [a]\nb [b]\nc [c]'); const tokens3 = analyze('a [a]\nb [b]\nc [c]');
assert.deepEqual( assert.deepEqual(
{ type: 'text', content: 'a [a]\nb [b]\nc [c]' } { type: 'text', content: 'a [a]\nb [b]\nc [c]' }
, tokens2[0]); , tokens3[0]);
}); });
}); });