Skip to content

Commit 069da82

Browse files
committed
test: fix parent-recency bucket expectation
Change-Id: I403eb3d071868dea59c9d3f7b185d86ac9d24875 Signed-off-by: Thomas Kosiewski <tk@coder.com>
1 parent 745d9e5 commit 069da82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/browser/utils/ui/workspaceFiltering.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ describe("partitionWorkspacesByAge", () => {
174174
const workspaces = [parent, child];
175175

176176
const workspaceRecency = {
177-
parent: now - 1 * ONE_DAY_MS, // recent
177+
parent: now - 12 * 60 * 60 * 1000, // recent (< 1 day)
178178
child: now - 60 * ONE_DAY_MS, // old (but should inherit parent's)
179179
};
180180

0 commit comments

Comments
 (0)