Skip to content

Commit

Permalink
Bump test startup timeout dramatically to stop seeing this failure
Browse files Browse the repository at this point in the history
  • Loading branch information
niloc132 committed Mar 7, 2024
1 parent 21c02c1 commit 3ff05d7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public void testRefreshingTreeTable() {
connect(tables)
.then(treeTable("ticking_tree"))
.then(treeTable -> {
delayTestFinish(3501);
// Very large timeout, 3.5s is enough that we see failures on this regularly
delayTestFinish(20_000);
assertTrue(treeTable.isRefreshing());
assertFalse(treeTable.isClosed());
assertFalse(treeTable.isIncludeConstituents());
Expand Down

0 comments on commit 3ff05d7

Please sign in to comment.