aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-04-20 11:20:50 -0400
committerScott González <scott.gonzalez@gmail.com>2012-04-20 11:20:50 -0400
commit31f3d0e6a3af33918cad6f0a12efecc522740d47 (patch)
treed3ac43aa02f81f3bc5a937c6181fcdcebf800010 /tests/unit
parenta1665402511eb99e9c1a29a47262763cb3a3ba68 (diff)
downloadjquery-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.js4
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' );
});
});