Removes unnecessary test

This commit is contained in:
alschmiedt
2021-07-20 13:06:39 -07:00
parent 268a83d054
commit d101e591de

View File

@@ -112,11 +112,6 @@ suite('WorkspaceSvg', function() {
this.workspace.updateToolbox({'contents': []});
}.bind(this), 'Existing toolbox has categories. Can\'t change mode.');
});
test('Passing in string as toolboxdef', function() {
var parseToolboxFake = sinon.spy(Blockly.utils.toolbox, 'parseToolboxTree');
this.workspace.updateToolbox('<xml><category name="something"></category></xml>');
sinon.assert.calledOnce(parseToolboxFake);
});
});
suite('addTopBlock', function() {