Minor fix

This commit is contained in:
Sindhu Balasubramanian
2026-02-05 11:02:12 -08:00
parent 11c5748a31
commit 87fe289e3a

View File

@@ -250,7 +250,7 @@ class TreeNode {
// Try three times to wait for the node to expand.
for (let i = 0; i < RETRY_COUNT; i++) {
try {
await tree.waitFor({ state: "visible", timeout: 3*1000 });
await tree.waitFor({ state: "visible", timeout: 3 * 1000 });
// The tree has expanded, let's get out of here
return true;
} catch {