如何修复gomod:`github.com/stretchrcom/testify@v1.4.0:解析go.mod:意外的模块路径“ github.com/stretchr/testify”

时间:2019-09-02 12:34:24

标签: go go-modules

当我做go mod tidy时。 我收到以下错误:

go: github.com/stretchrcom/testify@v1.4.0: parsing go.mod: unexpected module path "github.com/stretchr/testify"

2 个答案:

答案 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