golang.org/x/exp@v0.0.0-20240506185415-9bf2ced13842/cmd/gorelease/testdata/tidy/missing_req_basic.test (about) 1 mod=example.com/tidy 2 base=v0.0.1 3 success=false 4 -- want -- 5 # diagnostics 6 go.mod: the following requirements are needed 7 example.com/basic@v1.1.2 8 Run 'go mod tidy' to add missing requirements. 9 10 # summary 11 Suggested version: v0.0.2 12 -- go.mod -- 13 module example.com/tidy 14 15 go 1.12 16 -- tidy.go -- 17 package tidy 18 19 import _ "example.com/basic/a"