Skip to content

Commit 8f7fc38

Browse files
committed
Fix wording in oauth2 flow test
1 parent 8423e33 commit 8f7fc38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/flow/oauth2.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ describe('oauth2', function () {
128128
})
129129
})
130130
it('step2 - request error', function (done) {
131-
var provider = {access_url: '/access_err'}
131+
var provider = {access_url: '/access_url'}
132132
var step1 = {code: 'code'}
133133
oauth2.step2(provider, step1, {}, function (err, body) {
134-
t.deepEqual(qs.parse(err), {error: {error: 'Invalid URI "/access_err"'}})
134+
t.deepEqual(qs.parse(err), {error: {error: 'Invalid URI "/access_url"'}})
135135
done()
136136
})
137137
})

0 commit comments

Comments
 (0)