aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjaubourg <j@ubourg.net>2011-01-31 11:14:38 +0100
committerjaubourg <j@ubourg.net>2011-01-31 11:14:38 +0100
commitd2384ad03a058370cc5978adaec5691fdee323bb (patch)
tree3c0c83544d01ae6963a4cd038d5366a4396e6505
parent91ca71daaab767f288f7173733f2bd907d8397a8 (diff)
downloadjquery-d2384ad03a058370cc5978adaec5691fdee323bb.tar.gz
jquery-d2384ad03a058370cc5978adaec5691fdee323bb.zip
Removed errorThrown test for 404 responses seeing as Safari 3.x XHR sets the statusText as "OK" rather than "Not Found".
-rw-r--r--test/unit/ajax.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js
index 5e217214c..ec28b7c8b 100644
--- a/test/unit/ajax.js
+++ b/test/unit/ajax.js
@@ -242,7 +242,7 @@ test("jQuery.ajax() - error callbacks", function() {
test("jQuery.ajax() - textStatus and errorThrown values", function() {
- var nb = 3;
+ var nb = 2;
expect( 2 * nb );
stop();
@@ -253,6 +253,11 @@ test("jQuery.ajax() - textStatus and errorThrown values", function() {
}
}
+ /*
+ Safari 3.x returns "OK" instead of "Not Found"
+ Safari 4.x doesn't have this issue so the test should be re-instated once
+ we drop support for 3.x
+
jQuery.ajax({
url: url("data/nonExistingURL"),
error: function( _ , textStatus , errorThrown ){
@@ -261,6 +266,7 @@ test("jQuery.ajax() - textStatus and errorThrown values", function() {
startN();
}
});
+ */
jQuery.ajax({
url: url("data/name.php?wait=5"),