Skip to content

Commit

Permalink
Update linting after updating standard dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
zwhitfield3 committed Aug 1, 2024
1 parent 816d266 commit 46a74c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion commands/connect/diagnose.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,5 @@ module.exports = {
})),

// Additional exports for code sharing
displayResults: displayResults
displayResults
}
2 changes: 1 addition & 1 deletion lib/clients/discovery.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class DiscoveryClient {
requestAppAccess (appName, addonType) {
const addonTypeQueryParam = addonType ? `?addon_type=${addonType}` : ''
const url = `/auth/${appName}${addonTypeQueryParam}`
return this.client({ url: url, method: 'POST' })
return this.client({ url, method: 'POST' })
}
}

Expand Down
2 changes: 1 addition & 1 deletion test/commands/connect/sf-auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe('connect:sf:auth', () => {
resource: resourceName
},
auth: {
password: password
password
}
}, {})
.then(() => expect(
Expand Down

0 comments on commit 46a74c1

Please sign in to comment.