Skip to content

Commit

Permalink
fixup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mrgrain committed Jan 15, 2025
1 parent 57c175d commit f8cf569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/aws-cdk/test/api/cloud-assembly.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test('select stacks by glob pattern', async () => {
const x = await cxasm.selectStacks({ patterns: ['with*'] }, { defaultBehavior: DefaultSelection.AllStacks });

// THEN
expect(x.stackCount).toBe(2);
expect(x.stackCount).toBe(3);
expect(x.stackIds).toContain('witherrors');
expect(x.stackIds).toContain('withouterrors');
});
Expand All @@ -38,7 +38,7 @@ test('select behavior: all', async () => {
const x = await cxasm.selectStacks({ patterns: [] }, { defaultBehavior: DefaultSelection.AllStacks });

// THEN
expect(x.stackCount).toBe(2);
expect(x.stackCount).toBe(3);
});

test('select behavior: none', async () => {
Expand Down

0 comments on commit f8cf569

Please sign in to comment.