]> 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:04:14 +0000 (07:04 +0400)
test/unit/attributes.js

index e9d3e67b4911b8bb7a6f1b158e2ca31e4c502f80..4a9bb677e3aa2ef310da08ddb3a278c9bcc9a387 100644 (file)
@@ -941,8 +941,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" );
@@ -960,8 +960,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() {