From: Mike Sherov Date: Sun, 7 Apr 2013 02:59:56 +0000 (-0400) Subject: Draggable Tests: fix copypasta'd assertion messages.(cherry picked from commit 6a3bf6... X-Git-Tag: 1.10.3~22 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2258e02e76ea20005e5e79a64d3e8bc071319052;p=jquery-ui.git Draggable Tests: fix copypasta'd assertion messages.(cherry picked from commit 6a3bf605ba74ef891bdbe39e8f3d2a0ba6bf33c9) --- 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 ); } }),