diff --git a/tests/index.js b/tests/index.js index 26c07498f..30771f794 100644 --- a/tests/index.js +++ b/tests/index.js @@ -1,4 +1,4 @@ -$(function() { +$( function() { $( "#main" ) .addClass( "ui-widget" ) @@ -7,4 +7,4 @@ $( "#main" ) .next() .addClass( "ui-widget-content ui-corner-bottom" ); -}); +} ); diff --git a/tests/unit/subsuite.js b/tests/unit/subsuite.js index a591ae711..31a279c28 100644 --- a/tests/unit/subsuite.js +++ b/tests/unit/subsuite.js @@ -1,4 +1,4 @@ -(function() { +( function() { var versions = [ "1.7.0", "1.7.1", "1.7.2", @@ -9,6 +9,7 @@ var versions = [ "compat-git" ], additionalTests = { + // component: [ "other_test.html" ] }; @@ -18,8 +19,8 @@ window.testAllVersions = function( widget ) { function( test ) { return $.map( versions, function( version ) { return test + "?jquery=" + version; - }); - })); + } ); + } ) ); }; -}()); +}() );