From cd59e1fffb863d5622261530baba550fa5a30ac8 Mon Sep 17 00:00:00 2001 From: Joshua Horton Date: Mon, 21 Jul 2025 22:12:17 +0700 Subject: [PATCH] fix(web): correct typo in unit test name Co-authored-by: Eberhard Beilharz --- .../src/tests/mocha/cases/edit-distance/context-tracker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/engine/predictive-text/worker-thread/src/tests/mocha/cases/edit-distance/context-tracker.js b/web/src/engine/predictive-text/worker-thread/src/tests/mocha/cases/edit-distance/context-tracker.js index 65b16c5fc2..da3d0bdef4 100644 --- a/web/src/engine/predictive-text/worker-thread/src/tests/mocha/cases/edit-distance/context-tracker.js +++ b/web/src/engine/predictive-text/worker-thread/src/tests/mocha/cases/edit-distance/context-tracker.js @@ -90,7 +90,7 @@ describe('ContextTracker', function() { }); // random deletion at the start + later substitution = still permitted - it(`returns false: 'clasts' => 'clasps' (subs allowed)`, () => { + it(`returns false: 'clasts' => 'lasps' (subs allowed)`, () => { assert.isTrue(ContextTracker.isSubstitutionAlignable('lasps', 'clasts', true)); }); });