Skip to content

Commit

Permalink
test(client-s3): use chunk size of 8 KB (#6799)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr authored Jan 15, 2025
1 parent f6068c8 commit c1a4254
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/client-s3/test/e2e/S3.e2e.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down

0 comments on commit c1a4254

Please sign in to comment.