Skip to content

Commit

Permalink
chore: Update large blob test to use 16mb
Browse files Browse the repository at this point in the history
  • Loading branch information
epociask committed Aug 29, 2024
1 parent bb493d8 commit 95d2b14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ func TestProxyServerWithLargeBlob(t *testing.T) {
URL: ts.Address(),
}
daClient := client.New(cfg)
// 4MB blob
testPreimage := []byte(e2e.RandString(4_000_000))
// 16MB blob
testPreimage := []byte(e2e.RandString(16_000_000))

t.Log("Setting input data on proxy server...")
blobInfo, err := daClient.SetData(ts.Ctx, testPreimage)
Expand Down

0 comments on commit 95d2b14

Please sign in to comment.