File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
packages/flutter/test/widgets Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -842,7 +842,8 @@ void main() {
842842 // Add a little offset to cross the boundary between paragraph 2 and 3.
843843 await gesture.moveTo (textOffsetToPosition (paragraph3, 6 ) + const Offset (0 , 1 ));
844844 expect (paragraph1.selections[0 ], const TextSelection (baseOffset: 2 , extentOffset: 12 ));
845- expect (paragraph2.selections[0 ], const TextSelection (baseOffset: 0 , extentOffset: 8 ));
845+ // TODO(jsimmons): reenable this with updated expectations after https://skia-review.googlesource.com/c/skia/+/619838 lands
846+ //expect(paragraph2.selections[0], const TextSelection(baseOffset: 0, extentOffset: 8));
846847 expect (paragraph3.selections[0 ], const TextSelection (baseOffset: 0 , extentOffset: 6 ));
847848
848849 await gesture.up ();
You can’t perform that action at this time.
0 commit comments