testing: fix skip comment on RequireWindows helper (#23776)

This commit is contained in:
Tim Gross
2024-08-09 09:07:25 -04:00
committed by GitHub
parent ef116b12d5
commit 920f4702d6

View File

@@ -74,7 +74,7 @@ func RequireNotWindows(t *testing.T) {
// - not running on Windows
func RequireWindows(t *testing.T) {
if runtime.GOOS != "windows" {
t.Skip("Test requires non-Windows")
t.Skip("Test requires Windows")
}
}