From d64b6fe9e0f2946e51fe5fb4440d6a4a4a63faef Mon Sep 17 00:00:00 2001 From: alschmiedt Date: Tue, 27 Nov 2018 13:31:32 -0800 Subject: [PATCH] Changes function name --- tests/jsunit/generator_test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/jsunit/generator_test.js b/tests/jsunit/generator_test.js index 9addeaa35..f1a04cd29 100644 --- a/tests/jsunit/generator_test.js +++ b/tests/jsunit/generator_test.js @@ -59,7 +59,7 @@ function defineGeneratorTestBlocks() { }]); } -function undefineTestBlocks() { +function undefineGeneratorTestBlocks() { delete Blockly.Blocks['stack_block']; delete Blockly.Blocks['row_block']; } @@ -70,7 +70,7 @@ function generatorTest_setUp() { } function generatorTest_tearDown() { - undefineTestBlocks(); + undefineGeneratorTestBlocks(); workspace.dispose(); }