Skip to content

Commit

Permalink
fix: bad toolbox definitions namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
BeksOmega committed Mar 2, 2022
1 parent 39db79b commit 9c13a36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/mocha/flyout_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
goog.module('Blockly.test.flyout');

const {defineStackBlock, sharedTestSetup, sharedTestTeardown, workspaceTeardown} = goog.require('Blockly.test.helpers.setupTeardown');
const {getBasicToolbox, getChildItem, getCollapsibleItem, getDeeplyNestedJSON, getInjectedToolbox, getNonCollapsibleItem, getProperSimpleJson, getSeparator, getSimpleJson, getXmlArray} = goog.require('Blockly.test.helpers.toolbox_definitions');
const {getBasicToolbox, getChildItem, getCollapsibleItem, getDeeplyNestedJSON, getInjectedToolbox, getNonCollapsibleItem, getProperSimpleJson, getSeparator, getSimpleJson, getXmlArray} = goog.require('Blockly.test.helpers.toolboxDefinitions');


suite('Flyout', function() {
Expand Down
2 changes: 1 addition & 1 deletion tests/mocha/test_helpers/toolbox_definitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

goog.module('Blockly.test.helpers.toolbox_definitions');
goog.module('Blockly.test.helpers.toolboxDefinitions');


/**
Expand Down
2 changes: 1 addition & 1 deletion tests/mocha/toolbox_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ goog.module('Blockly.test.toolbox');

const {defineStackBlock} = goog.require('Blockly.test.helpers.blockDefinitions');
const {sharedTestSetup, sharedTestTeardown} = goog.require('Blockly.test.helpers.setupTeardown');
const {getBasicToolbox, getCategoryJSON, getChildItem, getCollapsibleItem, getDeeplyNestedJSON, getInjectedToolbox, getNonCollapsibleItem, getSeparator, getSimpleJson, getXmlArray} = goog.require('Blockly.test.helpers.toolbox_definitions');
const {getBasicToolbox, getCategoryJSON, getChildItem, getCollapsibleItem, getDeeplyNestedJSON, getInjectedToolbox, getNonCollapsibleItem, getSeparator, getSimpleJson, getXmlArray} = goog.require('Blockly.test.helpers.toolboxDefinitions');


suite('Toolbox', function() {
Expand Down

0 comments on commit 9c13a36

Please sign in to comment.