File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ export abstract class APIClient {
163
163
maxRetries = 2 ,
164
164
timeout = 60000 , // 1 minute
165
165
httpAgent,
166
- fetch : overridenFetch ,
166
+ fetch : overriddenFetch ,
167
167
} : {
168
168
baseURL : string ;
169
169
maxRetries ?: number | undefined ;
@@ -176,7 +176,7 @@ export abstract class APIClient {
176
176
this . timeout = validatePositiveInteger ( 'timeout' , timeout ) ;
177
177
this . httpAgent = httpAgent ;
178
178
179
- this . fetch = overridenFetch ?? fetch ;
179
+ this . fetch = overriddenFetch ?? fetch ;
180
180
}
181
181
182
182
protected authHeaders ( opts : FinalRequestOptions ) : Headers {
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ describe('instantiate client', () => {
197
197
expect ( client . tokenSecret ) . toBe ( 'my secret' ) ;
198
198
} ) ;
199
199
200
- test ( 'with overriden environment variable arguments' , ( ) => {
200
+ test ( 'with overridden environment variable arguments' , ( ) => {
201
201
// set options via env var
202
202
process . env [ 'MUX_TOKEN_ID' ] = 'another my token id' ;
203
203
process . env [ 'MUX_TOKEN_SECRET' ] = 'another my secret' ;
You can’t perform that action at this time.
0 commit comments