From d810e73ab2c65017d423e6403981bac83cb340b1 Mon Sep 17 00:00:00 2001 From: Colin Alworth Date: Fri, 9 Feb 2024 10:33:47 -0600 Subject: [PATCH] Increase another failing test timeout Followup #4988 --- .../io/deephaven/web/client/api/HierarchicalTableTestGwt.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/client-api/src/test/java/io/deephaven/web/client/api/HierarchicalTableTestGwt.java b/web/client-api/src/test/java/io/deephaven/web/client/api/HierarchicalTableTestGwt.java index 993e054dabe..4cc66b6bb05 100644 --- a/web/client-api/src/test/java/io/deephaven/web/client/api/HierarchicalTableTestGwt.java +++ b/web/client-api/src/test/java/io/deephaven/web/client/api/HierarchicalTableTestGwt.java @@ -71,7 +71,7 @@ public void testRefreshingTreeTable() { // This call effectively asserts that there are 10 rows after expand, so we don't need // to worry about an update from the underlying table racing the expand return waitForEventWhere(treeTable, JsTreeTable.EVENT_UPDATED, - (CustomEvent d) -> d.detail.getTreeSize() == 1, 2002); + (CustomEvent d) -> d.detail.getTreeSize() == 1, 4004); }).then(event -> { treeTable.close();