diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2019-01-30 17:15:12 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2019-01-30 17:15:12 +0900 |
| commit | b3fc4dc00f4e38976a5cebfd6fb201fc362e01f0 (patch) | |
| tree | b59d2dd74d13089e24efa26b7ad633fe420e651e /test/mfm.ts | |
| parent | Rename parser to language (diff) | |
| download | sharkey-b3fc4dc00f4e38976a5cebfd6fb201fc362e01f0.tar.gz sharkey-b3fc4dc00f4e38976a5cebfd6fb201fc362e01f0.tar.bz2 sharkey-b3fc4dc00f4e38976a5cebfd6fb201fc362e01f0.zip | |
Fix import
Diffstat (limited to 'test/mfm.ts')
| -rw-r--r-- | test/mfm.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mfm.ts b/test/mfm.ts index 5873164d67..7e7d2bf56d 100644 --- a/test/mfm.ts +++ b/test/mfm.ts @@ -13,7 +13,7 @@ import * as assert from 'assert'; import { parse, parsePlain } from '../src/mfm/parse'; import { toHtml } from '../src/mfm/toHtml'; import { createTree as tree, createLeaf as leaf, MfmTree } from '../src/mfm/types'; -import { removeOrphanedBrackets } from '../src/mfm/parser'; +import { removeOrphanedBrackets } from '../src/mfm/language'; function text(text: string): MfmTree { return leaf('text', { text }); |