Skip to content

Commit b3cc4d7

Browse files
authored
Merge pull request #224 from watson-developer-cloud/fix/basic-auth-creds
fix(Express): properly format basic auth creds
2 parents 03634fb + 339aebb commit b3cc4d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ app.get('/api/v1/credentials', (req, res, next) => {
6161
};
6262
} else {
6363
credentials = {
64-
token,
64+
token: token.token,
6565
serviceUrl,
6666
};
6767
}

test/unit/offline.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('offline tests', () => {
2727
nock('https://stream.watsonplatform.net:443', { encodedQueryParams: true })
2828
.get('/authorization/api/v1/token')
2929
.query({ url: 'https://stream.watsonplatform.net/speech-to-text/api' })
30-
.reply(200, 'faketoken', {
30+
.reply(200, fakeToken, {
3131
connection: 'close',
3232
'transfer-encoding': 'chunked',
3333
'content-type': 'text/xml',

0 commit comments

Comments
 (0)