diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-04-20 11:20:50 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-04-20 11:20:50 -0400 |
commit | 31f3d0e6a3af33918cad6f0a12efecc522740d47 (patch) | |
tree | d3ac43aa02f81f3bc5a937c6181fcdcebf800010 /tests/unit | |
parent | a1665402511eb99e9c1a29a47262763cb3a3ba68 (diff) | |
download | jquery-ui-31f3d0e6a3af33918cad6f0a12efecc522740d47.tar.gz jquery-ui-31f3d0e6a3af33918cad6f0a12efecc522740d47.zip |
Resizabe tests: Use equal() instead of equals().
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/resizable/resizable_options.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/resizable/resizable_options.js b/tests/unit/resizable/resizable_options.js index 275639ca1..e10a55a31 100644 --- a/tests/unit/resizable/resizable_options.js +++ b/tests/unit/resizable/resizable_options.js @@ -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' ); }); }); |