Skip to content

Commit cde444c

Browse files
committed
fix: lint
Signed-off-by: ferhat elmas <elmas.ferhat@gmail.com>
1 parent 275f37a commit cde444c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/test/s3-protocol.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,9 @@ describe('S3 Protocol', () => {
589589
Bucket: bucketName,
590590
})
591591
)
592-
expect((listResp.Contents || []).map((item) => item.Key)).toEqual(expect.arrayContaining([key]))
592+
expect((listResp.Contents || []).map((item) => item.Key)).toEqual(
593+
expect.arrayContaining([key])
594+
)
593595
})
594596

595597
it('prevent uploading files larger than the maxFileSize limit', async () => {

0 commit comments

Comments
 (0)