From 85c7ebf97d97aaf1ff32c8c25366a6e24081c8d4 Mon Sep 17 00:00:00 2001 From: "john.mortlock" Date: Tue, 13 Sep 2022 07:57:50 +0930 Subject: [PATCH] Fix linter warning --- packages/@aws-cdk/aws-apigateway/test/integ.cors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-apigateway/test/integ.cors.ts b/packages/@aws-cdk/aws-apigateway/test/integ.cors.ts index 4c6eb67f693b7..5d83efbc1f3c4 100644 --- a/packages/@aws-cdk/aws-apigateway/test/integ.cors.ts +++ b/packages/@aws-cdk/aws-apigateway/test/integ.cors.ts @@ -1,9 +1,9 @@ import * as path from 'path'; import * as lambda from '@aws-cdk/aws-lambda'; import { App, Stack, StackProps } from '@aws-cdk/core'; +import { IntegTest } from '@aws-cdk/integ-tests'; import { Construct } from 'constructs'; import * as apigw from '../lib'; -import { IntegTest } from '@aws-cdk/integ-tests'; class TestStack extends Stack { constructor(scope: Construct, id: string, props?: StackProps) {