Skip to content

Commit 4e39014

Browse files
committed
Dialog: Fix code style
1 parent d2ce363 commit 4e39014

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/dialog/helper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ return $.extend( helper, {
3434
},
3535

3636
shouldResize: function( assert, element, dw, dh, msg ) {
37-
var actualDH, actualDW, heightAfter, widthAfter
37+
var actualDH, actualDW, heightAfter, widthAfter,
3838
d = element.dialog( "widget" ),
3939
handle = $( ".ui-resizable-se", d ),
4040
heightBefore = element.height(),
@@ -52,7 +52,7 @@ return $.extend( helper, {
5252

5353
// TODO: Switch to assert.close().
5454
// Also change the testDrag() helper.
55-
assert.ok( Math.abs(actualDH - dh) <= 1 && Math.abs(actualDW - dw) <= 1, "resized[50, 50] " + msg );
55+
assert.ok( Math.abs( actualDH - dh ) <= 1 && Math.abs( actualDW - dw ) <= 1, "resized[50, 50] " + msg );
5656
}
5757
} );
5858

0 commit comments

Comments
 (0)