From 571010923ef5547418a03fcf82b8fe3a510aaec9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 16 Jan 2026 06:06:34 +0000 Subject: [PATCH 1/2] Initial plan From f9be01898aa550bcc41f6371b2d6a3d30d1279ac Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 16 Jan 2026 06:11:07 +0000 Subject: [PATCH 2/2] Fix staticcheck S1009: Remove redundant nil check in sys_test.go Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> --- internal/sys/sys_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/sys/sys_test.go b/internal/sys/sys_test.go index 25e1549e..dbf6305f 100644 --- a/internal/sys/sys_test.go +++ b/internal/sys/sys_test.go @@ -43,7 +43,7 @@ func TestNewSysServer(t *testing.T) { require.NotNil(t, server, "NewSysServer should never return nil") assert.Equal(t, tt.wantCount, len(server.serverIDs), "Server count mismatch") - if tt.serverIDs != nil && len(tt.serverIDs) > 0 { + if len(tt.serverIDs) > 0 { assert.Equal(t, tt.serverIDs, server.serverIDs, "Server IDs should match") } })