Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjushahgupta committed Mar 1, 2025
1 parent e4feda0 commit 4d75daf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pkg/config/manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ func TestLoadFromFile(t *testing.T) {
},
ApplovinMax: []ApplovinMaxConnection{
{
Name: "applovinmax-1",
APIKey: "api-key-123",
Name: "applovinmax-1",
APIKey: "api-key-123",
},
},
Personio: []PersonioConnection{
Expand Down
2 changes: 1 addition & 1 deletion pkg/connection/connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -2029,7 +2029,7 @@ func (m *Manager) AddApplovinMaxConnectionFromConfig(connection *config.Applovin
m.mutex.Unlock()

client, err := applovinmax.NewClient(applovinmax.Config{
APIKey: connection.APIKey,
APIKey: connection.APIKey,
})
if err != nil {
return err
Expand Down

0 comments on commit 4d75daf

Please sign in to comment.