File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -884,7 +884,11 @@ describe('OAuth Authorization', () => {
884884
885885 describe ( 'selectClientAuthMethod' , ( ) => {
886886 it ( 'selects the correct client authentication method from client information' , ( ) => {
887- const clientInfo = { client_id : 'test-client-id' , client_secret : 'test-client-secret' , token_endpoint_auth_method : 'client_secret_basic' } ;
887+ const clientInfo = {
888+ client_id : 'test-client-id' ,
889+ client_secret : 'test-client-secret' ,
890+ token_endpoint_auth_method : 'client_secret_basic'
891+ } ;
888892 const supportedMethods = [ 'client_secret_post' , 'client_secret_basic' , 'none' ] ;
889893 const authMethod = selectClientAuthMethod ( clientInfo , supportedMethods ) ;
890894 expect ( authMethod ) . toBe ( 'client_secret_basic' ) ;
You can’t perform that action at this time.
0 commit comments