diff --git a/oauth3.issuer.mock.js b/oauth3.issuer.mock.js index e054edb..e671f12 100644 --- a/oauth3.issuer.mock.js +++ b/oauth3.issuer.mock.js @@ -27,10 +27,10 @@ OAUTH3.authz.scopes = function () { return OAUTH3.PromiseA.resolve({ - pending: ['oauth3_authn'] // not yet accepted - , granted: [] // all granted, ever - , requested: ['oauth3_authn'] // all requested, now - , accepted: [] // granted (ever) and requested (now) + pending: [ 'authn@oauth3.org' ] // not yet accepted + , granted: [] // all granted, ever + , requested: [ 'authn@oauth3.org' ] // all requested, now + , accepted: [] // granted (ever) and requested (now) }); }; OAUTH3.authz.grants = function (providerUri, opts) {