diff options
author | StefanVukovic99 <stefanvukovic44@gmail.com> | 2023-12-23 11:29:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-23 10:29:48 +0000 |
commit | 6550495282780abaaa4c1aa4d33e3907fedf2927 (patch) | |
tree | 48d176ccac8a802e1bf03caf175d0f02c124cc97 /test/database.test.js | |
parent | 76c52d2ea08d9764c8f044c1f3a8c1eaf6434828 (diff) |
move dictionary files to dictionary folder (#429)
Diffstat (limited to 'test/database.test.js')
-rw-r--r-- | test/database.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/database.test.js b/test/database.test.js index 86c69a41..4a52f18d 100644 --- a/test/database.test.js +++ b/test/database.test.js @@ -22,8 +22,8 @@ import path from 'path'; import {beforeEach, describe, expect, test, vi} from 'vitest'; import {parseJson} from '../dev/json.js'; import {createDictionaryArchive} from '../dev/util.js'; -import {DictionaryDatabase} from '../ext/js/language/dictionary-database.js'; -import {DictionaryImporter} from '../ext/js/language/dictionary-importer.js'; +import {DictionaryDatabase} from '../ext/js/dictionary/dictionary-database.js'; +import {DictionaryImporter} from '../ext/js/dictionary/dictionary-importer.js'; import {DictionaryImporterMediaLoader} from './mocks/dictionary-importer-media-loader.js'; const dirname = path.dirname(fileURLToPath(import.meta.url)); |