diff --git a/common/web/types/tests/kvk/kvk-file-writer.tests.ts b/common/web/types/tests/kvk/kvk-file-writer.tests.ts index 955d21c53a9..89778ffa6b9 100644 --- a/common/web/types/tests/kvk/kvk-file-writer.tests.ts +++ b/common/web/types/tests/kvk/kvk-file-writer.tests.ts @@ -269,10 +269,10 @@ function initVisualKeyboardKey( bitmap: number[] = null, ): VisualKeyboardKey { const vkk: VisualKeyboardKey = { - vkey: vkey, - flags: flags, - shift: shift, - text: text, + vkey, + flags, + shift, + text, bitmap: bitmap ? new Uint8Array(bitmap) : null, }; return vkk;