diff --git a/clients/client-s3/test/e2e/S3.e2e.spec.ts b/clients/client-s3/test/e2e/S3.e2e.spec.ts index 91f7024c62fa..ee10ca80b9a7 100644 --- a/clients/client-s3/test/e2e/S3.e2e.spec.ts +++ b/clients/client-s3/test/e2e/S3.e2e.spec.ts @@ -35,8 +35,8 @@ describe("@aws-sdk/client-s3", () => { await client.deleteObject({ Bucket, Key }); }); it("should succeed with Node.js readable stream body", async () => { - const length = 10 * 1000; // 10KB - const chunkSize = 10; + const length = 100 * 1024; // 100KB + const chunkSize = 8 * 1024; // 8KB const { Readable } = require("stream"); let sizeLeft = length; const inputStream = new Readable({