Skip to content

Commit

Permalink
Disable line_height tests on Windows (flutter#6423)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryQian committed Oct 3, 2018
1 parent 061cc66 commit 191168c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion third_party/txt/src/txt/paragraph.h
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class Paragraph {
FRIEND_TEST(ParagraphTest, RepeatLayoutParagraph);
FRIEND_TEST(ParagraphTest, Ellipsize);
FRIEND_TEST(ParagraphTest, UnderlineShiftParagraph);
FRIEND_TEST(ParagraphTest, LineHeightsParagraph);
FRIEND_TEST_WINDOWS_DISABLED(ParagraphTest, LineHeightsParagraph);

// Starting data to layout.
std::vector<uint16_t> text_;
Expand Down
2 changes: 1 addition & 1 deletion third_party/txt/src/txt/styled_runs.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class StyledRuns {
FRIEND_TEST(ParagraphTest, HyphenBreakParagraph);
FRIEND_TEST(ParagraphTest, RepeatLayoutParagraph);
FRIEND_TEST(ParagraphTest, Ellipsize);
FRIEND_TEST(ParagraphTest, LineHeightsParagraph);
FRIEND_TEST_WINDOWS_DISABLED(ParagraphTest, LineHeightsParagraph);

struct IndexedRun {
size_t style_index = 0;
Expand Down

0 comments on commit 191168c

Please sign in to comment.