WIP test size reduction

This commit is contained in:
Michał Gołębiowski-Owczarek 2020-03-02 22:12:34 +01:00 committed by Michał Gołębiowski-Owczarek
parent bc5f82ba1d
commit a16ab31f48
No known key found for this signature in database

View File

@ -63,12 +63,9 @@ jQuery.ajaxTransport( function( options ) {
if ( type === "abort" ) {
xhr.abort();
} else if ( type === "error" ) {
complete( {
// File: protocol always yields status 0; see trac-8605, trac-14207
status: xhr.status,
statusText: xhr.statusText
} );
// File: protocol always yields status 0; see trac-8605, trac-14207
complete( xhr );
} else {
complete( {
status: xhrSuccessStatus[ xhr.status ] || xhr.status,