Skip to content

Commit c1a4254

Browse files
authored
test(client-s3): use chunk size of 8 KB (#6799)
1 parent f6068c8 commit c1a4254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clients/client-s3/test/e2e/S3.e2e.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ describe("@aws-sdk/client-s3", () => {
3535
await client.deleteObject({ Bucket, Key });
3636
});
3737
it("should succeed with Node.js readable stream body", async () => {
38-
const length = 10 * 1000; // 10KB
39-
const chunkSize = 10;
38+
const length = 100 * 1024; // 100KB
39+
const chunkSize = 8 * 1024; // 8KB
4040
const { Readable } = require("stream");
4141
let sizeLeft = length;
4242
const inputStream = new Readable({

0 commit comments

Comments
 (0)