Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikbratashchuk committed Aug 30, 2024
1 parent a95c204 commit 04d4946
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/test_suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package test
import (
"bytes"
"context"
"strings"
"sync"
"testing"
"time"
Expand Down Expand Up @@ -138,9 +137,7 @@ func ConcurrentReadWriteTest(t *testing.T, d da.DA) {
defer wg.Done()
for i := uint64(1); i <= 100; i++ {
_, err := d.GetIDs(ctx, i, []byte{})
if err != nil && !strings.Contains(err.Error(), ErrNoBlobAtHeight.Error()) {
assert.NoError(t, err)
}
assert.NoError(t, err)
}
}()

Expand Down

0 comments on commit 04d4946

Please sign in to comment.