Skip to content

Commit

Permalink
Increase counter in concurrent test
Browse files Browse the repository at this point in the history
  • Loading branch information
Manav-Aggarwal committed Nov 17, 2023
1 parent 59b40ef commit b2c5865
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,15 +153,15 @@ func ConcurrentReadWriteTest(t *testing.T, da da.DA) {

go func() {
defer wg.Done()
for i := uint64(0); i < 10; i++ {
for i := uint64(0); i < 100; i++ {
_, err := da.GetIDs(i)
assert.NoError(t, err)
}
}()

go func() {
defer wg.Done()
for i := uint64(0); i < 10; i++ {
for i := uint64(0); i < 100; i++ {
_, _, err := da.Submit([][]byte{[]byte("test")})
assert.NoError(t, err)
}
Expand Down

0 comments on commit b2c5865

Please sign in to comment.