Skip to content

Commit c7358ea

Browse files
misc(Standard.js): Fix standard 11 errors
1 parent 55e42dd commit c7358ea

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/multi-rp-client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class MultiRpClient {
5151
// state: '...', // not doing state for the moment
5252
// scope: 'openid profile'
5353
}
54-
if (workflow === 'code') { // Authorization Code workflow
54+
if (workflow === 'code') { // Authorization Code workflow
5555
authParams.response_type = 'code'
5656
} else if (workflow === 'implicit') {
5757
authParams.response_type = 'id_token token'

test/unit/multi-rp-client-test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
const test = require('tape')
44
const sinon = require('sinon')
55

6-
76
const OIDCRelyingParty = require('@trust/oidc-rp')
87
const MultiRpClient = require('../../src/index')
98
const ClientStore = require('../../src/client-store')

0 commit comments

Comments
 (0)