Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/aws-cdk/lib/cdk-toolkit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ export class CdkToolkit {
);
}

// Go around through the 'while' loop again but switch rollback to false.
// Go around through the 'while' loop again but switch rollback to true.
rollback = true;
break;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk/test/cdk-toolkit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,7 @@ describe('synth', () => {

const deployments = new Deployments({ sdkProvider: new MockSdkProvider() });

// Rollback might be called -- just don't do nothing.
// Rollback might be called -- just don't do anything.
const mockRollbackStack = jest.spyOn(deployments, 'rollbackStack').mockResolvedValue({});

const mockedDeployStack = jest
Expand Down
Loading