Skip to content

Commit 36a150e

Browse files
committed
small fix
1 parent d6347ef commit 36a150e

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

testutils_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,9 +306,6 @@ func assertIterator(t *testing.T, itr db.Iterator, mirror [][]string, ascending
306306
for startIdx != endIdx {
307307
nextExpectedPair := mirror[mirrorIdx]
308308

309-
if !itr.Valid() {
310-
t.Log(itr)
311-
}
312309
require.True(t, itr.Valid())
313310
require.Equal(t, []byte(nextExpectedPair[0]), itr.Key())
314311
require.Equal(t, []byte(nextExpectedPair[1]), itr.Value())

0 commit comments

Comments
 (0)