Skip to content

Commit

Permalink
Update packages/storage/__tests__/providers/s3/apis/utils/isInputWith…
Browse files Browse the repository at this point in the history
…Path.test.ts
  • Loading branch information
ashwinkumar6 authored Mar 12, 2024
1 parent 8ed0f9f commit 62726d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('isInputWithPath', () => {
it('should return true if input contains path', async () => {
expect(isInputWithPath({ path: '' })).toBe(true);
});
it('should return false if input contains key', async () => {
it('should return false if input does not contain key', async () => {
expect(isInputWithPath({ key: '' })).toBe(false);
});
});

0 comments on commit 62726d6

Please sign in to comment.