Skip to content

Commit

Permalink
fix: integ test
Browse files Browse the repository at this point in the history
  • Loading branch information
badmintoncryer committed Jan 19, 2024
1 parent 015a758 commit b1218a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/@aws-cdk/aws-neptune-alpha/test/integ.cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import * as cdk from 'aws-cdk-lib';
import * as integ from '@aws-cdk/integ-tests-alpha';
import { DatabaseCluster, EngineVersion, InstanceType, LogType } from '../lib';
import { ClusterParameterGroup, ParameterGroupFamily } from '../lib/parameter-group';
import { NEPTUNE_ALPHA_USE_LOG_TYPE_IN_LOG_RETENTION_ID } from 'aws-cdk-lib/cx-api';

/*
* Test creating a cluster without specifying engine version.
Expand All @@ -18,7 +19,7 @@ import { ClusterParameterGroup, ParameterGroupFamily } from '../lib/parameter-gr
const app = new cdk.App();

const stack = new cdk.Stack(app, 'aws-cdk-neptune-integ');

stack.node.setContext(NEPTUNE_ALPHA_USE_LOG_TYPE_IN_LOG_RETENTION_ID, false);
const vpc = new ec2.Vpc(stack, 'VPC', { maxAzs: 2, restrictDefaultSecurityGroup: false });

const kmsKey = new kms.Key(stack, 'DbSecurity', {
Expand Down

0 comments on commit b1218a8

Please sign in to comment.