Skip to content

Commit

Permalink
remove testify dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
testinginprod committed Sep 9, 2024
1 parent 47056eb commit 842e136
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/v2/stf/branch/changeset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ package branch

import (
"testing"

"github.com/stretchr/testify/require"
)

func Test_memIterator(t *testing.T) {
Expand All @@ -23,6 +21,8 @@ func Test_memIterator(t *testing.T) {
t.Fatal(err)
}

require.False(t, it.Valid())
if it.Valid() {
t.Fatal("iterator must be invalid")
}
})
}

0 comments on commit 842e136

Please sign in to comment.