Skip to content

Commit 6a3bf60

Browse files
committed
Draggable Tests: fix copypasta'd assertion messages.
1 parent 16deadf commit 6a3bf60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/draggable/draggable_core.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ test( "#5009: scroll not working with parent's position fixed", function() {
139139
$( document ).scrollTop( startValue ).scrollLeft( startValue );
140140
},
141141
stop: function( event, ui ) {
142-
equal( ui.position.left, 10, "left position is correct despite overflow on HTML" );
143-
equal( ui.position.top, 10, "top position is correct despite overflow on HTML" );
142+
equal( ui.position.left, 10, "left position is correct when parent position is fixed" );
143+
equal( ui.position.top, 10, "top position is correct when parent position is fixed" );
144144
$( document ).scrollTop( 0 ).scrollLeft( 0 );
145145
}
146146
}),

0 commit comments

Comments
 (0)