From 57ccb1e14ac8c1326eb909bc31de14739ae3744b Mon Sep 17 00:00:00 2001 From: kozbial Date: Wed, 22 Sep 2021 17:35:08 -0700 Subject: [PATCH] Remove unecessary block variable block definition --- tests/mocha/xml_test.js | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/tests/mocha/xml_test.js b/tests/mocha/xml_test.js index 9826e2cc4..093a1b955 100644 --- a/tests/mocha/xml_test.js +++ b/tests/mocha/xml_test.js @@ -451,30 +451,6 @@ suite('XML', function() { suite('domToBlock', function() { setup(function() { this.workspace = new Blockly.Workspace(); - Blockly.defineBlocksWithJsonArray([{ - "type": "variables_get", - "message0": "%1", - "args0": [ - { - "type": "field_variable", - "name": "VAR" - } - ] - }, - { - "type": "variables_set", - "message0": "%1 %2", - "args0": [ - { - "type": "field_variable", - "name": "VAR" - }, - { - "type": "input_value", - "name": "VALUE" - } - ] - }]); }); teardown(function() { workspaceTeardown.call(this, this.workspace);