aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/unit/button/button_options.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/unit/button/button_options.js b/tests/unit/button/button_options.js
index 9c8ed84d3..834a64dcf 100644
--- a/tests/unit/button/button_options.js
+++ b/tests/unit/button/button_options.js
@@ -41,13 +41,13 @@ test("disabled, null", function() {
test( "disabled, ui-state-active is removed unless checkbox or radio", function() {
expect( 12 );
var elements = [
- $( "<input type='button'>" ),
- $( "<button></button>" ),
- $( "<a></a>" ),
- $( "<div></div>" ),
- $( "<input type='checkbox' id='checkbox' checked><label for='checkbox'></label>" ),
- $( "<input type='radio' id='radio' checked><label for='radio'></label>" )
- ];
+ $( "<input type='button'>" ),
+ $( "<button></button>" ),
+ $( "<a></a>" ),
+ $( "<div></div>" ),
+ $( "<input type='checkbox' id='checkbox' checked><label for='checkbox'></label>" ),
+ $( "<input type='radio' id='radio' checked><label for='radio'></label>" )
+ ];
$.each( elements, function() {
var element = $( this ).first().button(),