fix: Fix flaky connection checker test. (#8754)

This commit is contained in:
Aaron Dodson
2025-01-31 08:10:33 -08:00
committed by GitHub
parent 3e4665e5b8
commit 34da1da061

View File

@@ -503,8 +503,9 @@ suite('Connection checker', function () {
</xml>`), </xml>`),
this.workspace, this.workspace,
); );
[this.blockA, this.blockB, this.blockC] = this.blockA = this.workspace.getBlockById('A');
this.workspace.getAllBlocks(true); this.blockB = this.workspace.getBlockById('B');
this.blockC = this.workspace.getBlockById('C');
this.checker = this.workspace.connectionChecker; this.checker = this.workspace.connectionChecker;
}); });