@@ -16,7 +16,7 @@ import (
1616func Test_GetCodeScanningAlert (t * testing.T ) {
1717 // Verify tool definition once
1818 mockClient := github .NewClient (nil )
19- tool , _ := getCodeScanningAlert (mockClient , translations .NullTranslationHelper )
19+ tool , _ := GetCodeScanningAlert (mockClient , translations .NullTranslationHelper )
2020
2121 assert .Equal (t , "get_code_scanning_alert" , tool .Name )
2222 assert .NotEmpty (t , tool .Description )
@@ -82,7 +82,7 @@ func Test_GetCodeScanningAlert(t *testing.T) {
8282 t .Run (tc .name , func (t * testing.T ) {
8383 // Setup client with mock
8484 client := github .NewClient (tc .mockedClient )
85- _ , handler := getCodeScanningAlert (client , translations .NullTranslationHelper )
85+ _ , handler := GetCodeScanningAlert (client , translations .NullTranslationHelper )
8686
8787 // Create call request
8888 request := createMCPRequest (tc .requestArgs )
@@ -118,7 +118,7 @@ func Test_GetCodeScanningAlert(t *testing.T) {
118118func Test_ListCodeScanningAlerts (t * testing.T ) {
119119 // Verify tool definition once
120120 mockClient := github .NewClient (nil )
121- tool , _ := listCodeScanningAlerts (mockClient , translations .NullTranslationHelper )
121+ tool , _ := ListCodeScanningAlerts (mockClient , translations .NullTranslationHelper )
122122
123123 assert .Equal (t , "list_code_scanning_alerts" , tool .Name )
124124 assert .NotEmpty (t , tool .Description )
@@ -201,7 +201,7 @@ func Test_ListCodeScanningAlerts(t *testing.T) {
201201 t .Run (tc .name , func (t * testing.T ) {
202202 // Setup client with mock
203203 client := github .NewClient (tc .mockedClient )
204- _ , handler := listCodeScanningAlerts (client , translations .NullTranslationHelper )
204+ _ , handler := ListCodeScanningAlerts (client , translations .NullTranslationHelper )
205205
206206 // Create call request
207207 request := createMCPRequest (tc .requestArgs )
0 commit comments