From 7614a795e9bcdd24a7de17ff53df287757aa1b21 Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Mon, 14 Sep 2020 13:06:33 +0100 Subject: [PATCH] Fixed tests --- CliClient/tests/services_KeymapService.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CliClient/tests/services_KeymapService.js b/CliClient/tests/services_KeymapService.js index 9eb04fa284..d0ad81228e 100644 --- a/CliClient/tests/services_KeymapService.js +++ b/CliClient/tests/services_KeymapService.js @@ -173,7 +173,7 @@ describe('services_KeymapService', () => { keymapService.initialize('darwin'); const customKeymapItems_Darwin = [ { command: 'newNote', accelerator: 'Option+Shift+Cmd+N' }, - { command: 'synchronize', accelerator: 'F11' }, + { command: 'synchronize', accelerator: 'Ctrl+F11' }, { command: 'textBold', accelerator: 'Shift+F5' }, { command: 'showLocalSearch', accelerator: 'Ctrl+Option+S' }, { command: 'gotoAnything', accelerator: 'Ctrl+Shift+G' }, @@ -194,7 +194,7 @@ describe('services_KeymapService', () => { keymapService.initialize('win32'); const customKeymapItems_Win32 = [ { command: 'newNote', accelerator: 'Ctrl+Alt+Shift+N' }, - { command: 'synchronize', accelerator: 'F11' }, + { command: 'synchronize', accelerator: 'Ctrl+F11' }, { command: 'textBold', accelerator: 'Shift+F5' }, { command: 'showLocalSearch', accelerator: 'Ctrl+Alt+S' }, { command: 'gotoAnything', accelerator: 'Ctrl+Shift+G' },