git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c3b2aa9
)
Just restore window.JSON in the getJSON test, don't try to delete the value.
author
jeresig
<jeresig@gmail.com>
Thu, 3 Dec 2009 16:28:49 +0000
(11:28 -0500)
committer
jeresig
<jeresig@gmail.com>
Thu, 3 Dec 2009 16:28:49 +0000
(11:28 -0500)
test/unit/ajax.js
patch
|
blob
|
history
diff --git
a/test/unit/ajax.js
b/test/unit/ajax.js
index
75ef26c
..
d827a15
100644
(file)
--- 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();
});
});