From: Tobias Klauser Date: Tue, 16 Apr 2024 08:06:09 +0000 (+0200) Subject: os: remove unused issueNo field X-Git-Tag: go1.23rc1~610 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=50c20dc3824d25811dad52be6afaa05ff709744a;p=gostls13.git os: remove unused issueNo field It's no longer set since CL 31118. Change-Id: Ibe77b1454b5e7fd02eaed432f04cf993f53791fc Reviewed-on: https://go-review.googlesource.com/c/go/+/579135 Auto-Submit: Tobias Klauser LUCI-TryBot-Result: Go LUCI Reviewed-by: Ian Lance Taylor Reviewed-by: Carlos Amedee --- diff --git a/src/os/os_windows_test.go b/src/os/os_windows_test.go index 956ab07f51..f4ee076b81 100644 --- a/src/os/os_windows_test.go +++ b/src/os/os_windows_test.go @@ -96,7 +96,6 @@ func TestSameWindowsFile(t *testing.T) { type dirLinkTest struct { name string mklink func(link, target string) error - issueNo int // correspondent issue number (for broken tests) isMountPoint bool } @@ -135,11 +134,6 @@ func testDirLinks(t *testing.T, tests []dirLinkTest) { continue } - if test.issueNo > 0 { - t.Logf("skipping broken %q test: see issue %d", test.name, test.issueNo) - continue - } - fi1, err := os.Stat(link) if err != nil { t.Errorf("failed to stat link %v: %v", link, err)