Skip to content

Commit

Permalink
Fix error in test (#633)
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikrothenberger authored May 5, 2022
1 parent e1ae502 commit 29fd13b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/test-e2e/selenium.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 29fd13b

Please sign in to comment.