Update skipped test comment to point to an open bug (#62820)

This commit is contained in:
Ian Hickson 2020-08-04 13:41:05 -07:00 committed by GitHub
parent 3ed6b206d2
commit 18e2c16718
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -760,15 +760,6 @@ void main() {
expect(lines.length, 4);
// TODO(garyq): This data dump is for debugging a test flake. This should
// be removed when it is no longer useful.
if (lines[1].hardBreak == true) {
print('LineMetrics called: ${lines.length}');
for (final ui.LineMetrics line in lines) {
print('${line.lineNumber}: ${line.hardBreak}');
}
}
expect(lines[0].hardBreak, true);
expect(lines[1].hardBreak, false);
expect(lines[2].hardBreak, true);
@ -813,12 +804,7 @@ void main() {
expect(lines[1].lineNumber, 1);
expect(lines[2].lineNumber, 2);
expect(lines[3].lineNumber, 3);
// Disable this test, this is causing a large amount of flaking and
// does not have a clear cause. This may or may not be a dart compiler
// issue or similar. See https://github.com/flutter/flutter/issues/43763
// for more info.
}, skip: true);
}, skip: true); // https://github.com/flutter/flutter/issues/62819
test('TextPainter caret height and line height', () {
final TextPainter painter = TextPainter()