summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/mfm.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/mfm.ts b/test/mfm.ts
index 8ef72c9f8a..ccef31cd2c 100644
--- a/test/mfm.ts
+++ b/test/mfm.ts
@@ -844,11 +844,11 @@ describe('MFM', () => {
});
it('ignore parent []', () => {
- const tokens = parse('[https://example.com/foo]');
+ const tokens = parse('foo [https://example.com/foo] bar');
assert.deepStrictEqual(tokens, [
- text('['),
+ text('foo ['),
leaf('url', { url: 'https://example.com/foo' }),
- text(']')
+ text('] bar')
]);
});