Skip to content

Commit f3f88d0

Browse files
committed
Address other Copilot suggestions.
1 parent 3499ae5 commit f3f88d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/github/server_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ func TestNewMCPServer_CreatesSuccessfully(t *testing.T) {
135135
require.NoError(t, err, "expected inventory build to succeed")
136136

137137
// Create the server
138-
server, err := NewMCPServer(t.Context(), &cfg, deps, inv)
138+
server, err := NewMCPServer(context.Background(), &cfg, deps, inv)
139139
require.NoError(t, err, "expected server creation to succeed")
140140
require.NotNil(t, server, "expected server to be non-nil")
141141

pkg/http/mark/mark.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Package mark provides a mechnanism for tagging errors with a well-known error value.
1+
// Package mark provides a mechanism for tagging errors with a well-known error value.
22
package mark
33

44
import "errors"

0 commit comments

Comments
 (0)