aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorqmuntal <quimmuntal@gmail.com>2024-03-05 15:55:27 +0100
committerQuim Muntal <quimmuntal@gmail.com>2024-03-05 16:20:15 +0000
commit5e387b2feee87b7d8d5cc81e7cb08603b3e9cd6a (patch)
treefcb5d99df01194a788b3ad65a444323436e71804 /src
parent5dcc04aeacdaa78cc431e3f8b2119d2f351685b5 (diff)
downloadgo-5e387b2feee87b7d8d5cc81e7cb08603b3e9cd6a.tar.xz
os: fix 63703.md release notes
63703.md contains a paragraph that shouldn't be there, remove it. While here, fix a test error message related to the #63703 implementation. Updates #63703. Change-Id: I82a8b0b7dfa8f96530fb9a3a3aa971e03970f168 Reviewed-on: https://go-review.googlesource.com/c/go/+/569195 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Bryan Mills <bcmills@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src')
-rw-r--r--src/os/os_windows_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/os_windows_test.go b/src/os/os_windows_test.go
index 7e8b8bbf1f..956ab07f51 100644
--- a/src/os/os_windows_test.go
+++ b/src/os/os_windows_test.go
@@ -172,7 +172,7 @@ func testDirLinks(t *testing.T, tests []dirLinkTest) {
wantType = fs.ModeSymlink
}
if tp := fi2.Mode().Type(); tp != wantType {
- t.Errorf("Lstat(%q) is type %v; want %v", link, tp, fs.ModeDir)
+ t.Errorf("Lstat(%q) is type %v; want %v", link, tp, wantType)
}
}
}