Skip to content

Commit

Permalink
chore: ran linter
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Dec 18, 2020
1 parent 9aa66a3 commit 6993c1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test.oauth2.ts
Expand Up @@ -1325,12 +1325,12 @@ describe('oauth2', () => {
const scope = nock(baseUrl, {
reqheaders: {
'content-type': 'application/x-www-form-urlencoded',
'authorization': `Bearer ${accessToken}`,
authorization: `Bearer ${accessToken}`,
},
})
.post('/tokeninfo', () => true)
.reply(200, tokenInfo);

const info = await client.getTokenInfo(accessToken);
scope.done();
assert.strictEqual(info.aud, tokenInfo.aud);
Expand Down

0 comments on commit 6993c1d

Please sign in to comment.