Skip to content

Commit

Permalink
chore: fix integ tests (aws#23283)
Browse files Browse the repository at this point in the history
`CfnOutput` won't accept an array, in more ways than one. This test was always busted. Fix it.


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
rix0rrr committed Dec 8, 2022
1 parent cc76cfb commit 2cdd3dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk/test/integ/cli/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class StackUsingContext extends cdk.Stack {
});

new cdk.CfnOutput(this, 'Output', {
value: this.availabilityZones,
value: this.availabilityZones[0],
});
}
}
Expand Down

0 comments on commit 2cdd3dc

Please sign in to comment.