Skip to content

Commit ee61fb0

Browse files
committed
go/packages: fix issue number typo in TestIssue37629
I had written 37529 but the issue it was fixing was actually 37629. Fix that in the test name and comments. For golang/go#37629 Change-Id: Id3798423b9039e9a330d00c32f600181e254f757 Reviewed-on: https://go-review.googlesource.com/c/tools/+/579715 Reviewed-by: Sam Thanawalla <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 3735585 commit ee61fb0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

go/packages/packages_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2422,11 +2422,11 @@ func testForTestField(t *testing.T, exporter packagestest.Exporter) {
24222422
}
24232423
}
24242424

2425-
func TestIssue37529(t *testing.T) {
2426-
testAllOrModulesParallel(t, testIssue37529)
2425+
func TestIssue37629(t *testing.T) {
2426+
testAllOrModulesParallel(t, testIssue37629)
24272427
}
2428-
func testIssue37529(t *testing.T, exporter packagestest.Exporter) {
2429-
// Tests #37529. When automatic vendoring is triggered, and we try to determine
2428+
func testIssue37629(t *testing.T, exporter packagestest.Exporter) {
2429+
// Tests #37629. When automatic vendoring is triggered, and we try to determine
24302430
// the module root dir for a new overlay package, we previously would do a go list -m all,
24312431
// which is incompatible with automatic vendoring.
24322432

0 commit comments

Comments
 (0)