]> source.dussan.org Git - jquery.git/commitdiff
Tests: Fix code style issues
authorOleg <markelog@gmail.com>
Thu, 16 Jan 2014 03:04:14 +0000 (07:04 +0400)
committerOleg <markelog@gmail.com>
Thu, 16 Jan 2014 03:05:11 +0000 (07:05 +0400)
(cherry-picked from a2250b0f4c157745b8cd8ac1247c6084882c500f)

test/unit/attributes.js

index ff89b444ec4ba95afda7a51ee955a4d4a5a89a98..32fd7b958e34168fdd74f80bd113ea22f0eee0d1 100644 (file)
@@ -943,8 +943,8 @@ var testVal = function( valueObj ) {
        equal( document.getElementById("text1").value, "", "Check for modified (via val(null)) value of input element" );
 
        var j,
-               select = jQuery( "<select multiple><option value='1'/><option value='2'/></select>" );
-               $select1 = jQuery("#select1"),
+               $select = jQuery( "<select multiple><option value='1'/><option value='2'/></select>" ),
+               $select1 = jQuery("#select1");
 
        $select1.val( valueObj("3") );
        equal( $select1.val(), "3", "Check for modified (via val(String)) value of select element" );
@@ -962,8 +962,8 @@ var testVal = function( valueObj ) {
        equal( j.val(), "asdf", "Check node,textnode,comment with val()" );
        j.removeAttr("value");
 
-       select.val( valueObj( [ "1", "2" ] ) );
-       deepEqual( select.val(), [ "1", "2" ], "Should set array of values" );
+       $select.val( valueObj( [ "1", "2" ] ) );
+       deepEqual( $select.val(), [ "1", "2" ], "Should set array of values" );
 };
 
 test( "val(String/Number)", function() {