Skip to content

Commit 3188e1c

Browse files
committed
Tests: Style updates
Ref #14246 Ref gh-1588
1 parent fe5534b commit 3188e1c

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

tests/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$(function() {
1+
$( function() {
22

33
$( "#main" )
44
.addClass( "ui-widget" )
@@ -7,4 +7,4 @@ $( "#main" )
77
.next()
88
.addClass( "ui-widget-content ui-corner-bottom" );
99

10-
});
10+
} );

tests/unit/subsuite.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(function() {
1+
( function() {
22

33
var versions = [
44
"1.7.0", "1.7.1", "1.7.2",
@@ -9,6 +9,7 @@ var versions = [
99
"compat-git"
1010
],
1111
additionalTests = {
12+
1213
// component: [ "other_test.html" ]
1314
};
1415

@@ -18,8 +19,8 @@ window.testAllVersions = function( widget ) {
1819
function( test ) {
1920
return $.map( versions, function( version ) {
2021
return test + "?jquery=" + version;
21-
});
22-
}));
22+
} );
23+
} ) );
2324
};
2425

25-
}());
26+
}() );

0 commit comments

Comments
 (0)