aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing_other.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/testing_other.go')
-rw-r--r--src/testing/testing_other.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testing/testing_other.go b/src/testing/testing_other.go
index 29496d81bc..99a6276a4a 100644
--- a/src/testing/testing_other.go
+++ b/src/testing/testing_other.go
@@ -6,8 +6,8 @@
package testing
-// isWindowsAccessDenied reports whether err is ERROR_ACCESS_DENIED,
-// which is defined only on Windows.
-func isWindowsAccessDenied(err error) bool {
+// isWindowsRetryable reports whether err is a Windows error code
+// that may be fixed by retrying a failed filesystem operation.
+func isWindowsRetryable(err error) bool {
return false
}