Skip to content

Commit 04d4946

Browse files
Fix test
1 parent a95c204 commit 04d4946

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/test_suite.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package test
33
import (
44
"bytes"
55
"context"
6-
"strings"
76
"sync"
87
"testing"
98
"time"
@@ -138,9 +137,7 @@ func ConcurrentReadWriteTest(t *testing.T, d da.DA) {
138137
defer wg.Done()
139138
for i := uint64(1); i <= 100; i++ {
140139
_, err := d.GetIDs(ctx, i, []byte{})
141-
if err != nil && !strings.Contains(err.Error(), ErrNoBlobAtHeight.Error()) {
142-
assert.NoError(t, err)
143-
}
140+
assert.NoError(t, err)
144141
}
145142
}()
146143

0 commit comments

Comments
 (0)