diff options
author | Richard Worth <rdworth@gmail.com> | 2010-03-17 15:04:14 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2010-03-17 15:04:14 +0000 |
commit | 5c5f9ad69542e7ae3806611da648c463e96c32ba (patch) | |
tree | 2c0021e51d799a6266640df78b58667253bcf8cf /tests/unit/slider | |
parent | c6e48e85abcd1b8e47562e4d98634f4e647a7a1d (diff) | |
download | jquery-ui-5c5f9ad69542e7ae3806611da648c463e96c32ba.tar.gz jquery-ui-5c5f9ad69542e7ae3806611da648c463e96c32ba.zip |
whitespace
Diffstat (limited to 'tests/unit/slider')
-rw-r--r-- | tests/unit/slider/slider_events.js | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/unit/slider/slider_events.js b/tests/unit/slider/slider_events.js index 35097d708..22e908bdd 100644 --- a/tests/unit/slider/slider_events.js +++ b/tests/unit/slider/slider_events.js @@ -3,22 +3,22 @@ */ (function($) { -module("slider: events"); +module( "slider: events" ); -test("start", function() { - ok(false, "missing test - untested code is broken code."); +test( "start", function() { + ok( false, "missing test - untested code is broken code." ); }); -test("slide", function() { - ok(false, "missing test - untested code is broken code."); +test( "slide", function() { + ok( false, "missing test - untested code is broken code." ); }); -test("change", function() { - ok(false, "missing test - untested code is broken code."); +test( "change", function() { + ok( false, "missing test - untested code is broken code." ); }); -test("stop", function() { - ok(false, "missing test - untested code is broken code."); +test( "stop", function() { + ok( false, "missing test - untested code is broken code." ); }); -})(jQuery); +}( jQuery ) ); |