No need for the try/finally logic in the css tests, won't even work as expected.
This commit is contained in:
parent
22ff8e9ea4
commit
0bb4fd0af7
|
@ -120,7 +120,6 @@ if(jQuery.browser.msie) {
|
|||
}
|
||||
|
||||
test("css(String, Function)", function() {
|
||||
try {
|
||||
expect(3);
|
||||
|
||||
var sizes = ["10px", "20px", "30px"];
|
||||
|
@ -147,13 +146,10 @@ test("css(String, Function)", function() {
|
|||
index++;
|
||||
});
|
||||
|
||||
} finally {
|
||||
jQuery("#cssFunctionTest").remove();
|
||||
}
|
||||
});
|
||||
|
||||
test("css(Object) where values are Functions", function() {
|
||||
try {
|
||||
expect(3);
|
||||
|
||||
var sizes = ["10px", "20px", "30px"];
|
||||
|
@ -180,9 +176,7 @@ test("css(Object) where values are Functions", function() {
|
|||
index++;
|
||||
});
|
||||
|
||||
} finally {
|
||||
jQuery("#cssFunctionTest").remove();
|
||||
}
|
||||
});
|
||||
|
||||
test("jQuery.css(elem, 'height') doesn't clear radio buttons (bug #1095)", function () {
|
||||
|
|
Loading…
Reference in a new issue