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>`),
this.workspace,
);
[this.blockA, this.blockB, this.blockC] =
this.workspace.getAllBlocks(true);
this.blockA = this.workspace.getBlockById('A');
this.blockB = this.workspace.getBlockById('B');
this.blockC = this.workspace.getBlockById('C');
this.checker = this.workspace.connectionChecker;
});