Skip to content

Commit

Permalink
chore: make does-not-exist.json actually not exist (#20986)
Browse files Browse the repository at this point in the history
Somehow this file got checked in. Remove 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 authored Jul 4, 2022
1 parent 4a5deec commit c20e2c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/aws-cdk/does-not-exist.json

This file was deleted.

4 changes: 4 additions & 0 deletions packages/aws-cdk/test/notices.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,10 @@ describe('cli notices', () => {
expect(debugSpy).not.toHaveBeenCalled();

debugSpy.mockRestore();

if (fs.existsSync('does-not-exist.json')) {
fs.unlinkSync('does-not-exist.json');
}
});

test('retrieved data from the delegate when it is configured to ignore the cache', async () => {
Expand Down

0 comments on commit c20e2c4

Please sign in to comment.