From 5bcbfde97a3a938a156e7b013275bae6a8a376dd Mon Sep 17 00:00:00 2001 From: Akash Askoolum Date: Wed, 19 May 2021 07:52:57 +0100 Subject: [PATCH] chore: Fix import order linting error Not entirely sure how this got missed, but it looks like CI on `main` is failing because of it. See: - https://github.com/benmosher/eslint-plugin-import/pull/2021 --- integration-test/src/integration-test-stack.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-test/src/integration-test-stack.ts b/integration-test/src/integration-test-stack.ts index 58262b4561..be3e10f416 100644 --- a/integration-test/src/integration-test-stack.ts +++ b/integration-test/src/integration-test-stack.ts @@ -1,6 +1,6 @@ +import { GuDistributionBucketParameter, GuStack } from "@guardian/cdk/lib/constructs/core"; import type { App } from "@aws-cdk/core"; import type { GuStackProps } from "@guardian/cdk/lib/constructs/core"; -import { GuDistributionBucketParameter, GuStack } from "@guardian/cdk/lib/constructs/core"; export class IntegrationTestStack extends GuStack { constructor(scope: App, id: string, props: GuStackProps) {