1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix incorrect name of file

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-06-02 10:58:28 +03:00
parent 82e268eff3
commit 191c0fa960
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A
3 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import asyncFn from "@async-fn/jest";
import { getDiForUnitTesting } from "../../../main/getDiForUnitTesting";
import loggerInjectable from "../../logger.injectable";
import type { Logger } from "../../logger";
import withOrphanPromiseInjectable from "./with-orphan-promise";
import withOrphanPromiseInjectable from "./with-orphan-promise.injectable";
describe("with orphan promise, when called", () => {
let toBeDecorated: AsyncFnMock<(arg1: string, arg2: string) => Promise<string>>;

View File

@ -13,7 +13,7 @@ import quitAndInstallUpdateInjectable from "../../electron-app/features/quit-and
import downloadUpdateInjectable from "../download-update/download-update.injectable";
import broadcastChangeInUpdatingStatusInjectable from "./broadcast-change-in-updating-status.injectable";
import checkForUpdatesStartingFromChannelInjectable from "./check-for-updates-starting-from-channel.injectable";
import withOrphanPromiseInjectable from "../../../common/utils/with-orphan-promise/with-orphan-promise";
import withOrphanPromiseInjectable from "../../../common/utils/with-orphan-promise/with-orphan-promise.injectable";
const processCheckingForUpdatesInjectable = getInjectable({
id: "process-checking-for-updates",