Skip to content

Commit d070de8

Browse files
authored
test: fix typo in test skip message for non-Unix-like platforms
Darwin (macOS) isn't a linux platform.
1 parent b8212b6 commit d070de8

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
@@ -14,7 +14,7 @@ import (
1414

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

0 commit comments

Comments
 (0)