Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading