From 50c20dc3824d25811dad52be6afaa05ff709744a Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 16 Apr 2024 10:06:09 +0200 Subject: [PATCH] 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 --- src/os/os_windows_test.go | 6 ------ 1 file changed, 6 deletions(-) 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)