File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2621,7 +2621,7 @@ describe('OAuth Authorization', () => {
26212621 } ) ;
26222622
26232623 expect ( customFetch ) . toHaveBeenCalled ( ) ;
2624- const [ url , options ] = customFetch . mock . calls [ 0 ] ;
2624+ const [ , options ] = customFetch . mock . calls [ 0 ] ;
26252625
26262626 // Auth-specific Accept header should override base Accept header
26272627 expect ( options . headers ) . toMatchObject ( {
@@ -2656,7 +2656,7 @@ describe('OAuth Authorization', () => {
26562656 await discoverOAuthProtectedResourceMetadata ( 'https://resource.example.com' , undefined , wrappedFetch ) ;
26572657
26582658 expect ( customFetch ) . toHaveBeenCalledTimes ( 1 ) ;
2659- const [ url , options ] = customFetch . mock . calls [ 0 ] ;
2659+ const [ , options ] = customFetch . mock . calls [ 0 ] ;
26602660
26612661 // All RequestInit options should be preserved
26622662 expect ( options . credentials ) . toBe ( 'include' ) ;
You can’t perform that action at this time.
0 commit comments