Skip to content

Commit

Permalink
Remove use of golangplus test framework
Browse files Browse the repository at this point in the history
  • Loading branch information
mortent committed Nov 25, 2020
1 parent 6de8ff4 commit 8017d95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/util/search/pathparser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package search
import (
"testing"

"github.com/golangplus/testing/assert"
"github.com/stretchr/testify/assert"
)

type test struct {
Expand Down Expand Up @@ -78,7 +78,7 @@ func TestPathMatch(t *testing.T) {
ByPath: test.byPath,
}
actual := sr.pathMatch(test.traversedPath)
if !assert.Equal(t, "", actual, test.shouldMatch) {
if !assert.Equal(t, actual, test.shouldMatch) {
t.FailNow()
}
})
Expand Down

0 comments on commit 8017d95

Please sign in to comment.