From 6815842ad636a46f390673cb6c2438c5464223f9 Mon Sep 17 00:00:00 2001 From: npty Date: Fri, 22 Sep 2023 19:42:18 +0700 Subject: [PATCH] chore: reorder import --- .../axelar-local-dev-cosmos/src/__tests__/CosmosClient.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/axelar-local-dev-cosmos/src/__tests__/CosmosClient.spec.ts b/packages/axelar-local-dev-cosmos/src/__tests__/CosmosClient.spec.ts index 650c7508..ea175e2e 100644 --- a/packages/axelar-local-dev-cosmos/src/__tests__/CosmosClient.spec.ts +++ b/packages/axelar-local-dev-cosmos/src/__tests__/CosmosClient.spec.ts @@ -1,6 +1,6 @@ -import { CosmosClient } from "../CosmosClient"; import fs from "fs"; import path from "path"; +import { CosmosClient } from "../CosmosClient"; describe("CosmosClient", () => { let cosmosClient: CosmosClient;