Fix error caused by extra teardown call (#4877)

This commit is contained in:
Monica Kozbial
2021-06-08 10:19:08 -07:00
committed by GitHub
parent e7bf54e82e
commit 6f7ead6e9c
2 changed files with 2 additions and 4 deletions

View File

@@ -1249,10 +1249,6 @@ suite('Connection', function() {
};
});
teardown(function() {
sharedTestTeardown.call(this);
});
suite('Disconnect from old parent', function() {
test('Value', function() {
var oldParent = this.workspace.newBlock('row_block');

View File

@@ -4,6 +4,8 @@
* SPDX-License-Identifier: Apache-2.0
*/
goog.require('Blockly.WorkspaceComment');
suite('Events', function() {
setup(function() {
sharedTestSetup.call(this, {fireEventsNow: false});