Skip to content

Commit

Permalink
make large fixtuers
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtwinkle committed Aug 29, 2023
1 parent aa25d86 commit f1dfa26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/awss3/awss3_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ func TestDownloadFiles(t *testing.T) {
assert.NoError(t, err)

getBodyText := func(idx int) string {
const bodyText = "test-%d"
bodyText := fmt.Sprintf("%d-%s", idx, strings.Repeat("test", 10000))
return fmt.Sprintf(bodyText, idx)
}
keys := make(awss3.Keys, 100)
Expand Down

0 comments on commit f1dfa26

Please sign in to comment.