No need for the try/finally logic in the css tests, won't even work as expected.

This commit is contained in:
jeresig 2010-01-07 13:44:53 -05:00
parent 22ff8e9ea4
commit 0bb4fd0af7

View file

@ -120,7 +120,6 @@ if(jQuery.browser.msie) {
} }
test("css(String, Function)", function() { test("css(String, Function)", function() {
try {
expect(3); expect(3);
var sizes = ["10px", "20px", "30px"]; var sizes = ["10px", "20px", "30px"];
@ -147,13 +146,10 @@ test("css(String, Function)", function() {
index++; index++;
}); });
} finally {
jQuery("#cssFunctionTest").remove(); jQuery("#cssFunctionTest").remove();
}
}); });
test("css(Object) where values are Functions", function() { test("css(Object) where values are Functions", function() {
try {
expect(3); expect(3);
var sizes = ["10px", "20px", "30px"]; var sizes = ["10px", "20px", "30px"];
@ -180,9 +176,7 @@ test("css(Object) where values are Functions", function() {
index++; index++;
}); });
} finally {
jQuery("#cssFunctionTest").remove(); jQuery("#cssFunctionTest").remove();
}
}); });
test("jQuery.css(elem, 'height') doesn't clear radio buttons (bug #1095)", function () { test("jQuery.css(elem, 'height') doesn't clear radio buttons (bug #1095)", function () {