Skip to content

Commit b1218a8

Browse files
fix: integ test
1 parent 015a758 commit b1218a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/@aws-cdk/aws-neptune-alpha/test/integ.cluster.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import * as cdk from 'aws-cdk-lib';
66
import * as integ from '@aws-cdk/integ-tests-alpha';
77
import { DatabaseCluster, EngineVersion, InstanceType, LogType } from '../lib';
88
import { ClusterParameterGroup, ParameterGroupFamily } from '../lib/parameter-group';
9+
import { NEPTUNE_ALPHA_USE_LOG_TYPE_IN_LOG_RETENTION_ID } from 'aws-cdk-lib/cx-api';
910

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

2021
const stack = new cdk.Stack(app, 'aws-cdk-neptune-integ');
21-
22+
stack.node.setContext(NEPTUNE_ALPHA_USE_LOG_TYPE_IN_LOG_RETENTION_ID, false);
2223
const vpc = new ec2.Vpc(stack, 'VPC', { maxAzs: 2, restrictDefaultSecurityGroup: false });
2324

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

0 commit comments

Comments
 (0)