From 2b98a2636bb4dfbaf25a2358d2f71b8244c5aee1 Mon Sep 17 00:00:00 2001 From: Oleg Date: Thu, 16 Jan 2014 07:04:14 +0400 Subject: [PATCH] Tests: Fix code style issues (cherry-picked from a2250b0f4c157745b8cd8ac1247c6084882c500f) --- test/unit/attributes.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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() { -- 2.39.5