@@ -16,7 +16,7 @@ import (
16
16
func Test_GetCodeScanningAlert (t * testing.T ) {
17
17
// Verify tool definition once
18
18
mockClient := github .NewClient (nil )
19
- tool , _ := getCodeScanningAlert (mockClient , translations .NullTranslationHelper )
19
+ tool , _ := GetCodeScanningAlert (mockClient , translations .NullTranslationHelper )
20
20
21
21
assert .Equal (t , "get_code_scanning_alert" , tool .Name )
22
22
assert .NotEmpty (t , tool .Description )
@@ -82,7 +82,7 @@ func Test_GetCodeScanningAlert(t *testing.T) {
82
82
t .Run (tc .name , func (t * testing.T ) {
83
83
// Setup client with mock
84
84
client := github .NewClient (tc .mockedClient )
85
- _ , handler := getCodeScanningAlert (client , translations .NullTranslationHelper )
85
+ _ , handler := GetCodeScanningAlert (client , translations .NullTranslationHelper )
86
86
87
87
// Create call request
88
88
request := createMCPRequest (tc .requestArgs )
@@ -118,7 +118,7 @@ func Test_GetCodeScanningAlert(t *testing.T) {
118
118
func Test_ListCodeScanningAlerts (t * testing.T ) {
119
119
// Verify tool definition once
120
120
mockClient := github .NewClient (nil )
121
- tool , _ := listCodeScanningAlerts (mockClient , translations .NullTranslationHelper )
121
+ tool , _ := ListCodeScanningAlerts (mockClient , translations .NullTranslationHelper )
122
122
123
123
assert .Equal (t , "list_code_scanning_alerts" , tool .Name )
124
124
assert .NotEmpty (t , tool .Description )
@@ -201,7 +201,7 @@ func Test_ListCodeScanningAlerts(t *testing.T) {
201
201
t .Run (tc .name , func (t * testing.T ) {
202
202
// Setup client with mock
203
203
client := github .NewClient (tc .mockedClient )
204
- _ , handler := listCodeScanningAlerts (client , translations .NullTranslationHelper )
204
+ _ , handler := ListCodeScanningAlerts (client , translations .NullTranslationHelper )
205
205
206
206
// Create call request
207
207
request := createMCPRequest (tc .requestArgs )
0 commit comments