Draggable Tests: fix copypasta'd assertion messages.(cherry picked from commit 6a3bf605ba)

This commit is contained in:
Mike Sherov 2013-04-06 22:59:56 -04:00 committed by Scott González
parent 4dad933a0f
commit 2258e02e76

View File

@ -139,8 +139,8 @@ test( "#5009: scroll not working with parent's position fixed", function() {
$( document ).scrollTop( startValue ).scrollLeft( startValue ); $( document ).scrollTop( startValue ).scrollLeft( startValue );
}, },
stop: function( event, ui ) { stop: function( event, ui ) {
equal( ui.position.left, 10, "left 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 despite overflow on HTML" ); equal( ui.position.top, 10, "top position is correct when parent position is fixed" );
$( document ).scrollTop( 0 ).scrollLeft( 0 ); $( document ).scrollTop( 0 ).scrollLeft( 0 );
} }
}), }),