Skip to content

Commit 7d40e0b

Browse files
committed
fix integ
1 parent 5f4ed96 commit 7d40e0b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/destroy/cdk-destroy-nonexistent-stack.integtest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ integTest('cdk destroy with no force option exits without prompt if the stacks d
1111
const nonExistingStackName1 = 'non-existing-stack-1';
1212
const nonExistingStackName2 = 'non-existing-stack-2';
1313

14-
await expect(fixture.cdkDestroy([...fixture.fullStackName([nonExistingStackName1, nonExistingStackName2])], {
14+
await expect(fixture.cdkDestroy([nonExistingStackName1, nonExistingStackName2], {
1515
force: false,
1616
})).resolves.not.toThrow();
1717
}));

packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/destroy/cdk-destroy-stage-only.integtest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ integTest('cdk destroy can destroy stacks in stage-only configuration', withDefa
1111
const stack = await fixture.aws.cloudFormation.send(new DescribeStacksCommand({ StackName: stackName }));
1212
expect(stack.Stacks?.length ?? 0).toEqual(1);
1313

14-
await fixture.cdkDestroy(['stage/*'], {
14+
await fixture.cdkDestroy('stage/*', {
1515
modEnv: {
1616
INTEG_STACK_SET: 'stage-only',
1717
},

0 commit comments

Comments
 (0)