Skip to content

Commit

Permalink
chore: Fix test failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
gonfunko committed Nov 22, 2024
1 parent fa400b6 commit faeb64c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/mocha/toolbox_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,7 @@ suite('Toolbox', function () {
test('Init called -> HtmlDiv is inserted before parent node', function () {
const toolboxDiv = Blockly.common.getMainWorkspace().getInjectionDiv()
.childNodes[0];
assert.equal(
toolboxDiv.className,
'blocklyToolboxDiv blocklyNonSelectable',
);
assert.equal(toolboxDiv.className, 'blocklyToolboxDiv');
});
test('Init called -> Toolbox is subscribed to background and foreground colour', function () {
const themeManager = this.toolbox.workspace_.getThemeManager();
Expand Down

0 comments on commit faeb64c

Please sign in to comment.