Skip to content

Commit

Permalink
testing: fix skip comment on RequireWindows helper (#23776)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross authored Aug 9, 2024
1 parent ef116b1 commit 920f470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/testutil/driver_compatible.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}

Expand Down

0 comments on commit 920f470

Please sign in to comment.