Skip to content

Commit

Permalink
test names
Browse files Browse the repository at this point in the history
  • Loading branch information
go-to-k committed Nov 5, 2024
1 parent 9ea7824 commit f65e782
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/aws-cdk-lib/assertions/test/template.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,7 @@ describe('Template', () => {
}).toThrow(/dependency cycle/);
});

test('throws when given a template with cyclic dependencies if a skip flag is false', () => {
test('throws when given a template with cyclic dependencies if skipCyclicalDependenciesCheck is false', () => {
expect(() => {
Template.fromJSON({
Resources: {
Expand All @@ -1389,7 +1389,7 @@ describe('Template', () => {
}).toThrow(/dependency cycle/);
});

test('does not throw when given a template with cyclic dependencies if check is skipped', () => {
test('does not throw when given a template with cyclic dependencies if skipCyclicalDependenciesCheck is true', () => {
expect(() => {
Template.fromJSON({
Resources: {
Expand Down

0 comments on commit f65e782

Please sign in to comment.