Skip to content

Commit dd035d1

Browse files
committed
Widget tests: Coding standards.
1 parent 306764c commit dd035d1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/unit/widget/widget_tickets.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
22
* widget unit tests
33
*/
4-
(function($) {
4+
(function( $ ) {
55

6-
module('widget: tickets');
6+
module( "widget: tickets" );
77

8-
test('#5830 - Widget: Using inheritance overwrites the base classes options', function() {
8+
test( "#5830 - Widget: Using inheritance overwrites the base classes options", function() {
99
$.widget( "ui.testWidgetBase", {
1010
options: {
1111
obj: {
@@ -15,7 +15,7 @@ test('#5830 - Widget: Using inheritance overwrites the base classes options', fu
1515
arr: [ "testing" ]
1616
}
1717
});
18-
18+
1919
$.widget( "ui.testWidgetExtension", $.ui.testWidgetBase, {
2020
options: {
2121
obj: {
@@ -24,7 +24,7 @@ test('#5830 - Widget: Using inheritance overwrites the base classes options', fu
2424
arr: [ "alpha", "beta" ]
2525
}
2626
});
27-
27+
2828
same( $.ui.testWidgetBase.prototype.options.obj, {
2929
key1: "foo",
3030
key2: "bar"
@@ -38,9 +38,9 @@ test('#5830 - Widget: Using inheritance overwrites the base classes options', fu
3838
}, "extension class option object extends base");
3939
same( $.ui.testWidgetExtension.prototype.options.arr, [ "alpha", "beta" ],
4040
"extension class option array overwrites base");
41-
41+
4242
delete $.ui.testWidgetBase;
4343
delete $.ui.testWidgetExtension;
4444
});
4545

46-
})(jQuery);
46+
})( jQuery );

0 commit comments

Comments
 (0)