Skip to content

Commit 86b54be

Browse files
authored
Fix typo in test skip message for non-Unix-like platforms
Darwin (macOS) isn't a linux platform.
1 parent 3b41e28 commit 86b54be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/mcp/mcp_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
func TestWatchKubeConfig(t *testing.T) {
1414
if runtime.GOOS != "linux" && runtime.GOOS != "darwin" {
15-
t.Skip("Skipping test on non-linux platforms")
15+
t.Skip("Skipping test on non-Unix-like platforms")
1616
}
1717
testCase(t, func(c *mcpContext) {
1818
// Given

0 commit comments

Comments
 (0)