smartystreets / goconvey

Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go.
http://smartystreets.github.io/goconvey/
Other
8.23k stars 554 forks source link

error running go get -u because module declares its path as `github.com/smarty/assertions` #680

Open ashtonian opened 10 months ago

ashtonian commented 10 months ago

Using vendoring, and go mod, when I run go get -u all it seems to fail on goconvey with the following:

go: github.com/smartystreets/assertions@v1.15.1 (matching all@upgrade) requires github.com/smartystreets/assertions@v1.15.1: parsing go.mod:
        module declares its path as: github.com/smarty/assertions
                but was required as: github.com/smartystreets/assertions

assertions is an indirect dependency and as far as I can tell only used in go convey, I believe https://github.com/smartystreets/goconvey/issues/677 will fix it.

I'm not sure if this is an issue because of vendoring.