fix(web): correct typo in unit test name

Co-authored-by: Eberhard Beilharz <ermshiperete@users.noreply.github.com>
This commit is contained in:
Joshua Horton 2025-07-21 22:12:17 +07:00 committed by GitHub
parent 9bbed384e6
commit cd59e1fffb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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));
});
});