Widget tests: Coding standards.

This commit is contained in:
Scott González 2010-08-26 12:05:40 -04:00
parent 306764ca0f
commit dd035d1123

View File

@ -1,11 +1,11 @@
/*
* widget unit tests
*/
(function($) {
(function( $ ) {
module('widget: tickets');
module( "widget: tickets" );
test('#5830 - Widget: Using inheritance overwrites the base classes options', function() {
test( "#5830 - Widget: Using inheritance overwrites the base classes options", function() {
$.widget( "ui.testWidgetBase", {
options: {
obj: {
@ -43,4 +43,4 @@ test('#5830 - Widget: Using inheritance overwrites the base classes options', fu
delete $.ui.testWidgetExtension;
});
})(jQuery);
})( jQuery );