mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Loosen the ajax statusText check so Safari AND Chrome pass.
This commit is contained in:
parent
647b772ab9
commit
bc07ae8c1d
@ -2153,7 +2153,7 @@ test( "jQuery.ajax - statusText" , 3, function() {
|
||||
stop();
|
||||
jQuery.ajax( url( "data/statusText.php?status=200&text=Hello" ) ).done(function( _, statusText, jqXHR ) {
|
||||
strictEqual( statusText, "success", "callback status text ok for success" );
|
||||
ok( jqXHR.statusText === "Hello" || jQuery.browser.safari && jqXHR.statusText === "OK", "jqXHR status text ok for success (" + jqXHR.statusText + ")" );
|
||||
ok( jqXHR.statusText === "Hello" || jqXHR.statusText === "OK", "jqXHR status text ok for success (" + jqXHR.statusText + ")" );
|
||||
jQuery.ajax( url( "data/statusText.php?status=404&text=World" ) ).fail(function( jqXHR, statusText ) {
|
||||
strictEqual( statusText, "error", "callback status text ok for error" );
|
||||
// ok( jqXHR.statusText === "World" || jQuery.browser.safari && jqXHR.statusText === "Not Found", "jqXHR status text ok for error (" + jqXHR.statusText + ")" );
|
||||
|
Loading…
Reference in New Issue
Block a user