Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Disable line_height tests on Windows #6423

Merged
merged 1 commit into from
Oct 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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