Skip to content

Commit

Permalink
cmd/go: move mod_tidy.txt from testdata/mod to testdata/src
Browse files Browse the repository at this point in the history
This file is clearly a script test, not a module definition, but it's in the
wrong directory to be run as one.

Fortunately, it passes with only minor modifications (changing “..” to “.”).

Change-Id: I66a544dfde82b8348108d2596c74e174157ae297
Reviewed-on: https://go-review.googlesource.com/127615
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
  • Loading branch information
Bryan C. Mills committed Aug 2, 2018
1 parent 16ec180 commit 6eabfab
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ require (
w.1 v1.2.0
)

replace x.1 v1.0.0 => ../x
replace y.1 v1.0.0 => ../y
replace z.1 v1.1.0 => ../z
replace z.1 v1.2.0 => ../z
replace w.1 => ../w
replace x.1 v1.0.0 => ./x
replace y.1 v1.0.0 => ./y
replace z.1 v1.1.0 => ./z
replace z.1 v1.2.0 => ./z
replace w.1 => ./w

-- m.go --
package m
Expand Down

0 comments on commit 6eabfab

Please sign in to comment.