From 29fd13b7e2346be8f2360ec22a855d9b931c6fb8 Mon Sep 17 00:00:00 2001 From: Frederik Rothenberger <94825501+frederikrothenberger@users.noreply.github.com> Date: Thu, 5 May 2022 10:18:13 +0200 Subject: [PATCH] Fix error in test (#633) --- src/frontend/src/test-e2e/selenium.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/test-e2e/selenium.test.ts b/src/frontend/src/test-e2e/selenium.test.ts index 4957c269f7..7cc23cb8b8 100644 --- a/src/frontend/src/test-e2e/selenium.test.ts +++ b/src/frontend/src/test-e2e/selenium.test.ts @@ -287,7 +287,7 @@ test("Delegation maxTimeToLive: 2 months", async () => { await demoAppView.open(DEMO_APP_URL, II_URL); await demoAppView.waitForDisplay(); expect(await demoAppView.getPrincipal()).toBe("2vxsx-fae"); - await demoAppView.setMaxTimeToLive(BigInt(2592000_000_000_000)); + await demoAppView.setMaxTimeToLive(BigInt(5_184_000_000_000_000)); // 60 days await demoAppView.signin(); await switchToPopup(browser); await FLOWS.registerNewIdentity(DEVICE_NAME1, browser);