From: Oleg Date: Thu, 16 Jan 2014 03:04:14 +0000 (+0400) Subject: Tests: Fix code style issues X-Git-Tag: 1.11.0-rc1~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2b98a2636bb4dfbaf25a2358d2f71b8244c5aee1;p=jquery.git Tests: Fix code style issues (cherry-picked from a2250b0f4c157745b8cd8ac1247c6084882c500f) --- diff --git a/test/unit/attributes.js b/test/unit/attributes.js index ff89b444e..32fd7b958 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -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( "" ); - $select1 = jQuery("#select1"), + $select = jQuery( "" ), + $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() {