Skip to content

Commit

Permalink
tests: reduce the test size
Browse files Browse the repository at this point in the history
  • Loading branch information
denizsurmeli committed Jul 21, 2023
1 parent a00524d commit 5b55085
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions e2e/cat_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func TestCatS3Object(t *testing.T) {
const (
filename = "file.txt"
)
contents, expected := getSequentialFileContent(64 * mb)
contents, expected := getSequentialFileContent(16 * mb)

testcases := []struct {
name string
Expand All @@ -46,14 +46,15 @@ func TestCatS3Object(t *testing.T) {
assertOps: []assertOp{
jsonCheck(true),
},
}, {
},
{
name: "cat remote object with lower part size and higher concurrency",
cmd: []string{
"cat",
"-p",
"1",
"-c",
"20",
"10",
},
expected: expected,
},
Expand All @@ -65,7 +66,7 @@ func TestCatS3Object(t *testing.T) {
"-p",
"1",
"-c",
"20",
"10",
}, expected: expected,
assertOps: []assertOp{
jsonCheck(true),
Expand Down

0 comments on commit 5b55085

Please sign in to comment.