From 6e22880e4f4c34a37c471e6ce9fbf44549c73163 Mon Sep 17 00:00:00 2001 From: Beka Westberg Date: Wed, 2 Aug 2023 23:59:01 +0000 Subject: [PATCH] chore: format --- core/shortcut_registry.ts | 2 +- tests/mocha/keydown_test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/shortcut_registry.ts b/core/shortcut_registry.ts index 9a86b2d44bc..d6442f51da2 100644 --- a/core/shortcut_registry.ts +++ b/core/shortcut_registry.ts @@ -15,7 +15,7 @@ goog.declareModuleId('Blockly.ShortcutRegistry'); import {KeyCodes} from './utils/keycodes.js'; import * as object from './utils/object.js'; -import { WorkspaceSvg } from './workspace_svg.js'; +import {WorkspaceSvg} from './workspace_svg.js'; /** * Class for the registry of keyboard shortcuts. This is intended to be a diff --git a/tests/mocha/keydown_test.js b/tests/mocha/keydown_test.js index a13aeba26f9..f0f94310d26 100644 --- a/tests/mocha/keydown_test.js +++ b/tests/mocha/keydown_test.js @@ -30,7 +30,7 @@ suite('Key Down', function () { */ function setSelectedBlock(workspace) { defineStackBlock(); - const block = workspace.newBlock('stack_block') + const block = workspace.newBlock('stack_block'); Blockly.common.setSelected(block); return block; }