summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-08-05 13:50:49 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-08-05 13:50:49 +0900
commit005d25a07b21efbd4996e31a232fcf5393deb4d5 (patch)
tree833792f0fec6918f902efd5928097e5111caca98 /test
parent5.15.0 (diff)
downloadmisskey-005d25a07b21efbd4996e31a232fcf5393deb4d5.tar.gz
misskey-005d25a07b21efbd4996e31a232fcf5393deb4d5.tar.bz2
misskey-005d25a07b21efbd4996e31a232fcf5393deb4d5.zip
Fix test
Diffstat (limited to 'test')
-rw-r--r--test/mfm.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mfm.ts b/test/mfm.ts
index fcd5f3f076..652a6e9820 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);
});