Skip to content

Commit

Permalink
fix: missed a getApps -> appsGet
Browse files Browse the repository at this point in the history
  • Loading branch information
zjrgov committed Jan 17, 2025
1 parent de4f358 commit 6340abf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner-manager/cfd/cloudgov/cloudgov_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type stubClientAPI struct {
FailConnect bool
}

func (a *stubClientAPI) getApps() (apps []*App, err error) {
func (a *stubClientAPI) appsGet() (apps []*App, err error) {
if a.FailAppsGet {
return nil, errors.New("fail")
}
Expand Down

0 comments on commit 6340abf

Please sign in to comment.