diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2013-04-06 22:59:56 -0400 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2013-04-06 22:59:56 -0400 |
commit | 6a3bf605ba74ef891bdbe39e8f3d2a0ba6bf33c9 (patch) | |
tree | 0a788d61425668b52688d75b2a68ee0368d26505 /tests | |
parent | 16deadfb90c8c6a2d01c4e882b63d3b2bcf724f3 (diff) | |
download | jquery-ui-6a3bf605ba74ef891bdbe39e8f3d2a0ba6bf33c9.tar.gz jquery-ui-6a3bf605ba74ef891bdbe39e8f3d2a0ba6bf33c9.zip |
Draggable Tests: fix copypasta'd assertion messages.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/draggable/draggable_core.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/draggable/draggable_core.js b/tests/unit/draggable/draggable_core.js index 9ef18c4b2..88b9c3f23 100644 --- a/tests/unit/draggable/draggable_core.js +++ b/tests/unit/draggable/draggable_core.js @@ -139,8 +139,8 @@ test( "#5009: scroll not working with parent's position fixed", function() { $( document ).scrollTop( startValue ).scrollLeft( startValue ); }, stop: function( event, ui ) { - equal( ui.position.left, 10, "left position is correct despite overflow on HTML" ); - equal( ui.position.top, 10, "top position is correct despite overflow on HTML" ); + equal( ui.position.left, 10, "left position is correct when parent position is fixed" ); + equal( ui.position.top, 10, "top position is correct when parent position is fixed" ); $( document ).scrollTop( 0 ).scrollLeft( 0 ); } }), |