当我做go mod tidy
时。
我收到以下错误:
go: github.com/stretchrcom/testify@v1.4.0: parsing go.mod: unexpected module path "github.com/stretchr/testify"
答案 0 :(得分:0)
此错误是由于在移动到github.com/stretchr/testify
之前引用testify的软件包引起的。
解决方案是在go.mod
中添加以下行:
replace github.com/stretchrcom/testify v1.4.0 => github.com/stretchr/testify v1.4.0
答案 1 :(得分:0)
如果这是直接依赖项,则建议将正确的依赖项直接添加到您的go.mod
文件中,即github.com/stretchr/testify v1.4.0