test: fix typo in test skip message for non-Unix-like platforms

Darwin (macOS) isn't a linux platform.
This commit is contained in:
Yusheng Guo
2025-06-10 21:24:30 +08:00
committed by GitHub
parent b8212b6f6c
commit d070de86eb

View File

@@ -14,7 +14,7 @@ import (
func TestWatchKubeConfig(t *testing.T) {
if runtime.GOOS != "linux" && runtime.GOOS != "darwin" {
t.Skip("Skipping test on non-linux platforms")
t.Skip("Skipping test on non-Unix-like platforms")
}
testCase(t, func(c *mcpContext) {
// Given