-
Notifications
You must be signed in to change notification settings - Fork 17.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmd/go: fix module replace flag parsed bug
In CL 122404, we change -replace syntax from => to =. And we also need to change this and the tests. Fixes #26373. Change-Id: I2d4e85e10c1578540cc7673b93d849270940d776 Reviewed-on: https://go-review.googlesource.com/123778 Reviewed-by: Bryan C. Mills <[email protected]> Run-TryBot: Bryan C. Mills <[email protected]>
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -383,8 +383,8 @@ func TestModEdit(t *testing.T) { | |
"-droprequire=x.2", | ||
"-exclude=x.1 @ v1.2.0", | ||
"[email protected]", | ||
"[email protected]=>[email protected]", | ||
"[email protected] => ../z", | ||
"[email protected][email protected]", | ||
"[email protected] = ../z", | ||
) | ||
mustHaveGoMod(`module x.x/y/z | ||
|
@@ -451,8 +451,8 @@ require x.3 v1.99.0 | |
} | ||
|
||
tg.run("mod", | ||
"[email protected]=>y.1/[email protected]", | ||
"[email protected]=>y.1/[email protected]", | ||
"[email protected]=y.1/[email protected]", | ||
"[email protected]=y.1/[email protected]", | ||
) | ||
mustHaveGoMod(`module x.x/y/z | ||
|
@@ -466,7 +466,7 @@ replace ( | |
require x.3 v1.99.0 | ||
`) | ||
tg.run("mod", | ||
"-replace=x.1=>y.1/[email protected]", | ||
"-replace=x.1=y.1/[email protected]", | ||
) | ||
mustHaveGoMod(`module x.x/y/z | ||
|