File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -569,7 +569,7 @@ export default isHttpAdapterSupported && function httpAdapter(config) {
569
569
}
570
570
571
571
const err = new AxiosError (
572
- 'maxContentLength size of ' + config . maxContentLength + ' exceeded ',
572
+ 'stream has been aborted ' ,
573
573
AxiosError . ERR_BAD_RESPONSE ,
574
574
config ,
575
575
lastRequest
Original file line number Diff line number Diff line change @@ -1642,7 +1642,7 @@ describe('supports http with nodejs', function () {
1642
1642
assert . strictEqual ( success , false , 'request should not succeed' ) ;
1643
1643
assert . strictEqual ( failure , true , 'request should fail' ) ;
1644
1644
assert . strictEqual ( error . code , 'ERR_BAD_RESPONSE' ) ;
1645
- assert . strictEqual ( error . message , 'maxContentLength size of -1 exceeded ' ) ;
1645
+ assert . strictEqual ( error . message , 'stream has been aborted ' ) ;
1646
1646
done ( ) ;
1647
1647
} ) . catch ( done ) ;
1648
1648
} ) ;
You can’t perform that action at this time.
0 commit comments