From ea6a4813b7d996f6f7af0b61a5f1bf4ab80b291d Mon Sep 17 00:00:00 2001 From: jeresig Date: Mon, 27 Sep 2010 12:10:00 -0400 Subject: [PATCH] Allow 304/Not Modified tests to complete in Opera. --- test/unit/ajax.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 18122b9..6199270 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -1247,8 +1247,16 @@ test("jQuery.ajax - If-Modified-Since support", function() { ok(data == null, "response body should be empty") } start(); + }, + error: function() { + equals(false, "error"); + start(); } }); + }, + error: function() { + equals(false, "error"); + start(); } }); }); @@ -1278,13 +1286,20 @@ test("jQuery.ajax - Etag support", function() { ok(data == null, "response body should be empty") } start(); + }, + error: function() { + equals(false, "error"); + start(); } }); + }, + error: function() { + equals(false, "error"); + start(); } }); }); - test("jQuery.ajax - active counter", function() { ok( jQuery.ajax.active == 0, "ajax active counter should be zero: " + jQuery.ajax.active ); }); -- 1.7.10.4