Skip to content

Commit

Permalink
Fix module name (#1199)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rhys Koedijk authored Jul 9, 2024
1 parent 052bc00 commit 33f0242
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions updater/lib/tinglesoftware/dependabot/clients/azure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def get_with_token(url, token)
user: credentials&.fetch("username", nil),
password: token,
idempotent: true,
**SharedHelpers.excon_defaults(
**::Dependabot::SharedHelpers.excon_defaults(
headers: auth_header
)
)
Expand All @@ -102,7 +102,7 @@ def put_with_token(url, json, token)
user: credentials&.fetch("username", nil),
password: token,
idempotent: true,
**SharedHelpers.excon_defaults(
**::Dependabot::SharedHelpers.excon_defaults(
headers: auth_header.merge(
{
"Content-Type" => "application/json"
Expand Down

0 comments on commit 33f0242

Please sign in to comment.