From 8017d9593189a11cca03e50962583b1acf007ff6 Mon Sep 17 00:00:00 2001 From: Morten Torkildsen Date: Tue, 24 Nov 2020 20:24:35 -0800 Subject: [PATCH] Remove use of golangplus test framework --- internal/util/search/pathparser_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/util/search/pathparser_test.go b/internal/util/search/pathparser_test.go index 1646f63425..1bb70324bb 100644 --- a/internal/util/search/pathparser_test.go +++ b/internal/util/search/pathparser_test.go @@ -3,7 +3,7 @@ package search import ( "testing" - "github.com/golangplus/testing/assert" + "github.com/stretchr/testify/assert" ) type test struct { @@ -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() } })