Skip to content

Commit d12bc6b

Browse files
linted
1 parent 5a71513 commit d12bc6b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

packages/@aws-cdk/integ-tests-alpha/lib/assertions/assertions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class EqualsAssertion extends Construct {
6161

6262
new CfnOutput(this, 'AssertionResults', {
6363
value: this.result,
64-
key: `AssertionResults${id}${md5hash({ actual: props.actual.result, expected: props.expected.result })}`
64+
key: `AssertionResults${id}${md5hash({ actual: props.actual.result, expected: props.expected.result })}`,
6565
});
6666
}
6767
}

packages/@aws-cdk/integ-tests-alpha/lib/assertions/http-call.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class HttpApiCall extends ApiCallBase {
4747

4848
new CfnOutput(node, 'AssertionResults', {
4949
value: result,
50-
key: `AssertionResults${id.replace(/[\W_]+/g, '')}`
50+
key: `AssertionResults${id.replace(/[\W_]+/g, '')}`,
5151
});
5252
}
5353
}

packages/@aws-cdk/integ-tests-alpha/lib/assertions/sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export class AwsApiCall extends ApiCallBase {
121121
// Remove the at sign, slash, and hyphen because when using the v3 package name or client name as the service name,
122122
// the `id` includes them, but they are not allowed in the `CfnOutput` logical id
123123
// See https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/outputs-section-structure.html#outputs-section-syntax
124-
key: `AssertionResults${id}`.replace(/[\@\/\-]/g, '')
124+
key: `AssertionResults${id}`.replace(/[\@\/\-]/g, ''),
125125
});
126126
}
127127
}

packages/aws-cdk-lib/assertions/lib/template.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,11 +310,11 @@ export interface TemplateParsingOptions {
310310
readonly skipCyclicalDependenciesCheck?: boolean;
311311

312312
/**
313-
* If set to true, will skip cleanup of the synthesized app generated by the
313+
* If set to true, will skip cleanup of the synthesized app generated by the
314314
*
315315
* @default false
316316
*/
317-
readonly skipClean?: boolean;
317+
readonly skipClean?: boolean;
318318
}
319319

320320
function toTemplate(stack: Stack, skipClean?: boolean): any {

0 commit comments

Comments
 (0)