diff options
Diffstat (limited to 'tests/unit/checkboxradio/events.js')
-rw-r--r-- | tests/unit/checkboxradio/events.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/checkboxradio/events.js b/tests/unit/checkboxradio/events.js index ad7f1e75f..498491bd1 100644 --- a/tests/unit/checkboxradio/events.js +++ b/tests/unit/checkboxradio/events.js @@ -20,7 +20,7 @@ asyncTest( form.get( 0 ).reset(); - setTimeout(function() { + setTimeout( function() { assert.hasClasses( widget, "ui-state-active" ); start(); }, 1 ); @@ -33,7 +33,7 @@ asyncTest( "Checkbox shows focus when using keyboard navigation", function( asse label = $( "label[for='check']" ); assert.lacksClasses( label, "ui-state-focus" ); check.focus(); - setTimeout(function() { + setTimeout( function() { assert.hasClasses( label, "ui-state-focus" ); start(); } ); |