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 @@ -2539,7 +2539,7 @@ describe('OAuth Authorization', () => {
25392539 } ) ;
25402540
25412541 expect ( customFetch ) . toHaveBeenCalled ( ) ;
2542- const [ url , options ] = customFetch . mock . calls [ 0 ] ;
2542+ const [ , options ] = customFetch . mock . calls [ 0 ] ;
25432543
25442544 // Auth-specific Accept header should override base Accept header
25452545 expect ( options . headers ) . toMatchObject ( {
@@ -2574,7 +2574,7 @@ describe('OAuth Authorization', () => {
25742574 await discoverOAuthProtectedResourceMetadata ( 'https://resource.example.com' , undefined , wrappedFetch ) ;
25752575
25762576 expect ( customFetch ) . toHaveBeenCalledTimes ( 1 ) ;
2577- const [ url , options ] = customFetch . mock . calls [ 0 ] ;
2577+ const [ , options ] = customFetch . mock . calls [ 0 ] ;
25782578
25792579 // All RequestInit options should be preserved
25802580 expect ( options . credentials ) . toBe ( 'include' ) ;
You can’t perform that action at this time.
0 commit comments