aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlouisremi <louisremi@louisremi-laptop.(none)>2011-04-11 21:33:15 +0200
committerlouisremi <louisremi@louisremi-laptop.(none)>2011-04-11 21:33:15 +0200
commit930731ba0fbf8d2fc21e77283e3a8c332ac44570 (patch)
treee2f266c3d599afe8872bb08f4455e3140fd74729
parentd7104422017b26eb7bdbf4fc325ab16d561c40ce (diff)
downloadjquery-930731ba0fbf8d2fc21e77283e3a8c332ac44570.tar.gz
jquery-930731ba0fbf8d2fc21e77283e3a8c332ac44570.zip
Double quote is the new simple quote
-rw-r--r--test/unit/css.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/css.js b/test/unit/css.js
index c21beb808..d68aff85b 100644
--- a/test/unit/css.js
+++ b/test/unit/css.js
@@ -60,7 +60,7 @@ test("css(String|Hash)", function() {
equals( jQuery('#empty').css('opacity'), '1', "Assert opacity is taken from style attribute when set vs stylesheet in IE with filters" );
jQuery.support.opacity ?
ok(true, "Requires the same number of tests"):
- ok( ~jQuery('#empty')[0].currentStyle.filter.indexOf('gradient'), "Assert setting opacity doesn't overwrite other filters of the stylesheet in IE" );
+ ok( ~jQuery("#empty")[0].currentStyle.filter.indexOf("gradient"), "Assert setting opacity doesn't overwrite other filters of the stylesheet in IE" );
var div = jQuery('#nothiddendiv'), child = jQuery('#nothiddendivchild');