From 86b54bebe6d72716b3b90b53a3a824f262e3f729 Mon Sep 17 00:00:00 2001 From: Yusheng Guo <113574546+yshngg@users.noreply.github.com> Date: Tue, 20 May 2025 10:48:39 +0800 Subject: [PATCH] Fix typo in test skip message for non-Unix-like platforms Darwin (macOS) isn't a linux platform. --- pkg/mcp/mcp_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/mcp/mcp_test.go b/pkg/mcp/mcp_test.go index 347123bf..792f2573 100644 --- a/pkg/mcp/mcp_test.go +++ b/pkg/mcp/mcp_test.go @@ -12,7 +12,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