如何修复 gomod:`github.com/stretchrcom/testify@v1.4.0:

当我做一个go mod tidy. 我收到以下错误:

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



开满天机
浏览 96回答 2
2回答

红糖糍粑

如果这是直接依赖项,则建议将正确的依赖项直接添加到您的go.mod文件中,即github.com/stretchr/testify v1.4.0

慕森卡

此错误是由于一个包在移动到 之前引用了 testify github.com/stretchr/testify。解决方案是在您的 中添加以下行go.mod:replace github.com/stretchrcom/testify v1.4.0 => github.com/stretchr/testify v1.4.0
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go