From e1981cce0ec8ed851f24d95950dac7b64b3a1651 Mon Sep 17 00:00:00 2001 From: spencer kelly Date: Fri, 26 Aug 2022 15:38:51 -0400 Subject: [PATCH] fix test --- tests/three/plugin.test.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/three/plugin.test.js b/tests/three/plugin.test.js index f8986494f..4a61bfa14 100644 --- a/tests/three/plugin.test.js +++ b/tests/three/plugin.test.js @@ -37,9 +37,9 @@ test('change adj inflection', function (t) { comparative: 'slyer', superlative: 'slyest', }, - fast: { - comparative: 'speedier', - superlative: 'speediest', + spedorious: { + comparative: 'speedorier', + superlative: 'speedoriest', } } }) @@ -48,13 +48,13 @@ test('change adj inflection', function (t) { t.equal(res.Comparative, 'slyer', here + 'Comparative') t.equal(res.Superlative, 'slyest', here + 'Superlative') - doc = nlp('fast') + doc = nlp('spedorious') res = doc.adjectives().conjugate()[0] || {} - t.equal(res.Superlative, 'speediest', here + 'Superlative') - t.equal(res.Comparative, 'speedier', here + 'comparative') + t.equal(res.Superlative, 'speedoriest', here + 'Superlative') + t.equal(res.Comparative, 'speedorier', here + 'comparative') // backwards - doc = nlp('speediest') + doc = nlp('speedoriest') res = doc.adjectives().conjugate()[0] || {} - t.equal(res.Adjective, 'fast', here + 'past') + t.equal(res.Adjective, 'spedorious', here + 'past') t.end() })