Enable test after engine fix (#70469)

This commit is contained in:
Michael Goderbauer 2020-11-13 10:13:04 -08:00 committed by GitHub
parent 0a73ecf6df
commit b555b1a607
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1249,7 +1249,7 @@ void main() {
// The inline spans are rendered on one (horizontal) line, the sum of the widths is the max intrinsic width. // The inline spans are rendered on one (horizontal) line, the sum of the widths is the max intrinsic width.
expect(paragraph.getMaxIntrinsicWidth(0.0), 200 + 4 * 16.0); expect(paragraph.getMaxIntrinsicWidth(0.0), 200 + 4 * 16.0);
// The inline spans are rendered in one vertical run, the widest one determines the min intrinsic width. // The inline spans are rendered in one vertical run, the widest one determines the min intrinsic width.
expect(paragraph.getMinIntrinsicWidth(0.0), 200, skip: 'https://github.com/flutter/flutter/issues/70230'); expect(paragraph.getMinIntrinsicWidth(0.0), 200);
}); });
} }