diff --git a/__tests__/src/util/string.test.ts b/__tests__/src/util/string.test.ts index a909cb7..6f1ca4c 100644 --- a/__tests__/src/util/string.test.ts +++ b/__tests__/src/util/string.test.ts @@ -188,7 +188,7 @@ describe('splitPreservingConsecutiveSeparators', () => { ['Ctrl-x ', ['Ctrl', 'x', ' ']], ['Ctrl-x ', ['Ctrl', 'x']], [' ', [' ']], - ])('splitKeySequence("%s") => %s', (str, expected) => { + ])('splitPreservingConsecutiveSeparators("%s") => %s', (str, expected) => { expect(splitPreservingConsecutiveSeparators(str, ['-', ' '])).toEqual( expected, );