File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -169,9 +169,9 @@ async function performApiRequest<T, V>(
169
169
}
170
170
171
171
const queryParamString = querystring ( {
172
- key : auth . config . apiKey ,
173
- ...params
174
- } ) . slice ( 1 ) ;
172
+ key : auth . config . apiKey ,
173
+ ...params
174
+ } ) . slice ( 1 ) ;
175
175
176
176
const headers = await ( auth as AuthInternal ) . _getAdditionalHeaders ( ) ;
177
177
headers [ HttpHeader . CONTENT_TYPE ] = 'application/json' ;
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export function mockRegionalEndpointWithParent(
64
64
status = 200
65
65
) : Route {
66
66
let url = `${ TEST_SCHEME } ://${ TEST_HOST } ${ parent } ${ endpoint } ` ;
67
- url += " ?key=" ;
68
- url += key ;
67
+ url += ' ?key=' ;
68
+ url += key ;
69
69
return mock ( url , response , status ) ;
70
70
}
You can’t perform that action at this time.
0 commit comments