From f0c32278b41c91f4ad29ca8371c5935c959802f1 Mon Sep 17 00:00:00 2001 From: jeresig Date: Thu, 3 Dec 2009 11:28:49 -0500 Subject: [PATCH] Just restore window.JSON in the getJSON test, don't try to delete the value. --- test/unit/ajax.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 75ef26c..d827a15 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -785,12 +785,9 @@ test("jQuery.getJSON - Using Native JSON", function() { stop(); jQuery.getJSON(url("data/json.php"), function(json) { - if (!old) - delete window.JSON - else - window.JSON = old; - equals( json, true, "Verifying return value" ); - start(); + window.JSON = old; + equals( json, true, "Verifying return value" ); + start(); }); }); -- 1.7.10.4