From 8cdb0e0bcb4bdb71028d57e4406a756594247487 Mon Sep 17 00:00:00 2001 From: Janne Savolainen Date: Wed, 18 May 2022 09:27:43 +0300 Subject: [PATCH] Fix code style Co-authored-by: Mikko Aspiala Signed-off-by: Janne Savolainen --- src/common/runnable/run-many-for.test.ts | 10 +--------- src/common/runnable/run-many-sync-for.test.ts | 8 +------- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/src/common/runnable/run-many-for.test.ts b/src/common/runnable/run-many-for.test.ts index 0783358d69..193c1fd178 100644 --- a/src/common/runnable/run-many-for.test.ts +++ b/src/common/runnable/run-many-for.test.ts @@ -4,15 +4,7 @@ */ import type { AsyncFnMock } from "@async-fn/jest"; import asyncFn from "@async-fn/jest"; - - - -import { - createContainer, - getInjectable, - getInjectionToken, -} from "@ogre-tools/injectable"; - +import { createContainer, getInjectable, getInjectionToken } from "@ogre-tools/injectable"; import type { Runnable } from "./run-many-for"; import { runManyFor } from "./run-many-for"; import { getPromiseStatus } from "../test-utils/get-promise-status"; diff --git a/src/common/runnable/run-many-sync-for.test.ts b/src/common/runnable/run-many-sync-for.test.ts index 5a3ce32cb4..215b1a3b15 100644 --- a/src/common/runnable/run-many-sync-for.test.ts +++ b/src/common/runnable/run-many-sync-for.test.ts @@ -2,13 +2,7 @@ * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ - -import { - createContainer, - getInjectable, - getInjectionToken, -} from "@ogre-tools/injectable"; - +import { createContainer, getInjectable, getInjectionToken } from "@ogre-tools/injectable"; import type { RunnableSync } from "./run-many-sync-for"; import { runManySyncFor } from "./run-many-sync-for";