Skip to content

Commit

Permalink
remove coreConstruct
Browse files Browse the repository at this point in the history
  • Loading branch information
jogold committed Jun 2, 2022
1 parent b8b1b60 commit 3362dd4
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/@aws-cdk/aws-rds/test/integ.cluster-snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 3362dd4

Please sign in to comment.