diff --git a/src/content/whichkey_content.test.ts b/src/content/whichkey_content.test.ts index 716a1279..92a8700f 100644 --- a/src/content/whichkey_content.test.ts +++ b/src/content/whichkey_content.test.ts @@ -35,7 +35,7 @@ function makeKey( function makeMatches(count: number): Map { const map: Map = new Map() for (let i = 0; i < count; i++) { - map.set([makeKey(String.fromCharCode(97 + (i % 26)))], `cmd${i}`) + map.set([makeKey(String.fromCharCode(97 + i))], `cmd${i}`) } return map }