From 3362dd463998bf1753771a2cdd85c656519b5dd3 Mon Sep 17 00:00:00 2001 From: Jonathan Goldwasser Date: Thu, 2 Jun 2022 09:34:13 +0200 Subject: [PATCH] remove coreConstruct --- packages/@aws-cdk/aws-rds/test/integ.cluster-snapshot.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/@aws-cdk/aws-rds/test/integ.cluster-snapshot.ts b/packages/@aws-cdk/aws-rds/test/integ.cluster-snapshot.ts index 657c6fce2908f..771bf19532f96 100644 --- a/packages/@aws-cdk/aws-rds/test/integ.cluster-snapshot.ts +++ b/packages/@aws-cdk/aws-rds/test/integ.cluster-snapshot.ts @@ -7,10 +7,6 @@ import * as cr from '@aws-cdk/custom-resources'; import { Construct } from 'constructs'; import * as rds from '../lib'; -// keep this import separate from other imports to reduce chance for merge conflicts with v2-main -// eslint-disable-next-line no-duplicate-imports, import/order -import { Construct as CoreConstruct } from '@aws-cdk/core'; - class TestStack extends Stack { constructor(scope: Construct, id: string, props?: StackProps) { super(scope, id, props); @@ -50,7 +46,7 @@ interface SnapshoterProps { readonly snapshotIdentifier: string; } -class Snapshoter extends CoreConstruct { +class Snapshoter extends Construct { public readonly snapshotArn: string; constructor(scope: Construct, id: string, props: SnapshoterProps) {