From cfad2c01b9e17aa0358e0e9892879bba496e8467 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Mon, 9 Jan 2023 12:13:28 -0500 Subject: [PATCH] Fix expected URL Signed-off-by: Sebastian Malton --- .../opening-application-window-using-tray.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/quitting-and-restarting-the-app/opening-application-window-using-tray.test.ts b/src/features/quitting-and-restarting-the-app/opening-application-window-using-tray.test.ts index 175d8bb037..fa1be5b414 100644 --- a/src/features/quitting-and-restarting-the-app/opening-application-window-using-tray.test.ts +++ b/src/features/quitting-and-restarting-the-app/opening-application-window-using-tray.test.ts @@ -134,7 +134,7 @@ describe("opening application window using tray", () => { }); it("starts loading of content for the application window", () => { - expect(callForApplicationWindowHtmlMock).toHaveBeenCalledWith(matches((val) => val.startsWith("http://lens.app:"))); + expect(callForApplicationWindowHtmlMock).toHaveBeenCalledWith(matches((val) => val.startsWith("https://lens.app:"))); }); describe("given static HTML of application window has not resolved yet, when opening from tray again", () => {