Skip to content

Commit

Permalink
Fix linting issue for integ test
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee Hannigan committed Oct 23, 2024
1 parent 6a6671d commit 3f80e2e
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import { App, Stack, StackProps } from 'aws-cdk-lib';
import { ApproximateCreationDateTimePrecision, AttributeType, TableV2 } from 'aws-cdk-lib/aws-dynamodb';
import { Construct } from 'constructs';



class TestStack extends Stack {
public constructor(scope: Construct, id: string, props: StackProps) {
super(scope, id, props);
Expand All @@ -20,9 +18,9 @@ class TestStack extends Stack {
kinesisPrecisionTimestamp: ApproximateCreationDateTimePrecision.MILLISECOND,
replicas: [
{
region: 'eu-west-2',
}
]
region: 'eu-west-2',
},
],
});
}
}
Expand Down

0 comments on commit 3f80e2e

Please sign in to comment.