]> source.dussan.org Git - jquery-ui.git/commitdiff
Resizabe tests: Use equal() instead of equals().
authorScott González <scott.gonzalez@gmail.com>
Fri, 20 Apr 2012 15:20:50 +0000 (11:20 -0400)
committerScott González <scott.gonzalez@gmail.com>
Fri, 20 Apr 2012 15:20:50 +0000 (11:20 -0400)
tests/unit/resizable/resizable_options.js

index 275639ca1dfb97bd218e45973db4c53ecca8ed91..e10a55a31f3cf9b7f21e2f69db2bcb3f9a9749e9 100644 (file)
@@ -189,10 +189,10 @@ test("ui-resizable-nw { handles: 'all', minWidth: 60, minHeight: 60, maxWidth: 1
 
 test("zIndex, applied to all handles", function() {
        expect(8);
-       
+
        var target = $('<div></div>').resizable({ handles: 'all', zIndex: 100 });
        target.children( '.ui-resizable-handle' ).each( function( index, handle ) {
-               equals( $( handle ).css( 'zIndex' ), 100, 'compare zIndex' );
+               equal( $( handle ).css( 'zIndex' ), 100, 'compare zIndex' );
        });
 });