Skip to content

Commit 31f3d0e

Browse files
committed
Resizabe tests: Use equal() instead of equals().
1 parent a166540 commit 31f3d0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/resizable/resizable_options.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,10 @@ test("ui-resizable-nw { handles: 'all', minWidth: 60, minHeight: 60, maxWidth: 1
189189

190190
test("zIndex, applied to all handles", function() {
191191
expect(8);
192-
192+
193193
var target = $('<div></div>').resizable({ handles: 'all', zIndex: 100 });
194194
target.children( '.ui-resizable-handle' ).each( function( index, handle ) {
195-
equals( $( handle ).css( 'zIndex' ), 100, 'compare zIndex' );
195+
equal( $( handle ).css( 'zIndex' ), 100, 'compare zIndex' );
196196
});
197197
});
198198

0 commit comments

Comments
 (0)