diff --git a/pkgPath_test.go b/pkgPath_test.go index 5e31c4c..8d5d8d3 100644 --- a/pkgPath_test.go +++ b/pkgPath_test.go @@ -12,7 +12,7 @@ func TestGetPkgPath(t *testing.T) { c := &Closer{} name, pkgPath := getPkgPath(c) So(name, ShouldEqual, "Closer") - So(pkgPath, ShouldEqual, "github.com/vrecan/death") + So(pkgPath, ShouldEqual, "github.com/vrecan/death/v3") }) @@ -21,14 +21,14 @@ func TestGetPkgPath(t *testing.T) { closable = Closer{} name, pkgPath := getPkgPath(closable) So(name, ShouldEqual, "Closer") - So(pkgPath, ShouldEqual, "github.com/vrecan/death") + So(pkgPath, ShouldEqual, "github.com/vrecan/death/v3") }) Convey("Give pkgPath a copy", t, func() { c := Closer{} name, pkgPath := getPkgPath(c) So(name, ShouldEqual, "Closer") - So(pkgPath, ShouldEqual, "github.com/vrecan/death") + So(pkgPath, ShouldEqual, "github.com/vrecan/death/v3") }) }