aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAustin Siew <17107540+Aquafina-water-bottle@users.noreply.github.com>2023-06-05 00:48:57 -0600
committerAustin Siew <17107540+Aquafina-water-bottle@users.noreply.github.com>2023-06-05 00:48:57 -0600
commit659baf9afd76ce14e95ad0c0f14765cb4ba99652 (patch)
treefbf19ceca2eaf54aded3d3b2e755f0fcb261bc2b /test
parente8c62d65aab6a37ab988b135dead0f580ca0eb0b (diff)
fix: typo
Diffstat (limited to 'test')
-rw-r--r--test/test-deinflector.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-deinflector.js b/test/test-deinflector.js
index ea8af292..a20cfc95 100644
--- a/test/test-deinflector.js
+++ b/test/test-deinflector.js
@@ -921,8 +921,8 @@ function testDeinflections() {
vm.execute(['js/language/deinflector.js']);
const [Deinflector] = vm.get(['Deinflector']);
- const deinflectionReasions = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'ext', 'data/deinflect.json')));
- const deinflector = new Deinflector(deinflectionReasions);
+ const deinflectionReasons = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'ext', 'data/deinflect.json')));
+ const deinflector = new Deinflector(deinflectionReasons);
for (const {valid, tests} of data) {
for (const {source, term, rule, reasons} of tests) {