From 09591303cd3fcd36156201c7a572fd68635c6726 Mon Sep 17 00:00:00 2001 From: Jonah Back Date: Sun, 26 Jun 2022 13:35:53 -0700 Subject: [PATCH] address review comments Signed-off-by: Jonah Back --- .../src/processors/AwsEKSClusterProcessor.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/catalog-backend-module-aws/src/processors/AwsEKSClusterProcessor.test.ts b/plugins/catalog-backend-module-aws/src/processors/AwsEKSClusterProcessor.test.ts index fc44f5f912..3e33ba740c 100644 --- a/plugins/catalog-backend-module-aws/src/processors/AwsEKSClusterProcessor.test.ts +++ b/plugins/catalog-backend-module-aws/src/processors/AwsEKSClusterProcessor.test.ts @@ -21,7 +21,7 @@ import aws from 'aws-sdk'; describe('AwsEKSClusterProcessor', () => { AWSMock.setSDKInstance(aws); describe('readLocation', () => { - const processor = new (AwsEKSClusterProcessor as any)(); + const processor = new (AwsEKSClusterProcessor as any)({}); const location = { type: 'aws-eks', target: '957140518395/us-west-2' }; const emit = jest.fn(); it('generates cluster correctly', async () => {