From 3462d8ea3c1b02b2c2d73419b51957be50314eaa Mon Sep 17 00:00:00 2001 From: Michael Assaf Date: Wed, 9 Oct 2024 16:35:43 -0400 Subject: [PATCH] lint fix --- test/util/bspNet/testrunner.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/util/bspNet/testrunner.ts b/test/util/bspNet/testrunner.ts index a8e26525..bf550e92 100644 --- a/test/util/bspNet/testrunner.ts +++ b/test/util/bspNet/testrunner.ts @@ -225,10 +225,10 @@ export const launchFullNetwork = async ( if (initialised) { return await runInitialisedFullNet(config); - } else { - await runSimpleFullNet(config); - return undefined; } + + await runSimpleFullNet(config); + return undefined; }; const pickConfig = (options: TestOptions) => {