Skip to content

Commit

Permalink
Fix linting issues (#1972)
Browse files Browse the repository at this point in the history
  • Loading branch information
halamix2 authored Feb 28, 2024
1 parent c4fb953 commit 1737e36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/btp/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type LocalClient struct {
func NewLocalClient(credentials *CISCredentials, token *XSUAAToken) *LocalClient {
return &LocalClient{
credentials: credentials,
cis: newHttpClient(token),
cis: newHTTPClient(token),
}
}

Expand Down Expand Up @@ -53,7 +53,7 @@ type httpClient struct {
client *http.Client
}

func newHttpClient(token *XSUAAToken) *httpClient {
func newHTTPClient(token *XSUAAToken) *httpClient {
return &httpClient{
client: &http.Client{
Transport: &oauthTransport{
Expand Down
1 change: 1 addition & 0 deletions internal/btp/credentials_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
)

const (
// nolint:gosec
correctCredentials = `{
"grant_type": "test",
"uaa": {
Expand Down

0 comments on commit 1737e36

Please sign in to comment.