Skip to content

Commit

Permalink
fix logical ID conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
xazhao committed Jan 15, 2025
1 parent 2d34f19 commit 6d61d79
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ test('Task throws if cluster supplied does not have clusterEndpoint configured',
const importedCluster = eks.Cluster.fromClusterAttributes(stack, 'InvalidCluster', {
clusterName: 'importedCluster',
clusterCertificateAuthorityData: 'clusterCertificateAuthorityData',
kubectlLayer: new KubectlV31Layer(stack, 'KubectlLayer'),
kubectlLayer: new KubectlV31Layer(stack, 'ImportKubectlLayer'),
});
expect(() => {
new EksCall(stack, 'Call', {
Expand All @@ -221,7 +221,7 @@ test('Task throws if cluster supplied does not have clusterCertificateAuthorityD
const importedCluster = eks.Cluster.fromClusterAttributes(stack, 'InvalidCluster', {
clusterName: 'importedCluster',
clusterEndpoint: 'clusterEndpoint',
kubectlLayer: new KubectlV31Layer(stack, 'KubectlLayer'),
kubectlLayer: new KubectlV31Layer(stack, 'ImportKubectlLayer'),
});
expect(() => {
new EksCall(stack, 'Call', {
Expand Down

0 comments on commit 6d61d79

Please sign in to comment.