Fix libtxt unit tests (flutter/engine#6111)

This commit is contained in:
Jason Simmons
2018-08-29 10:43:17 -07:00
committed by GitHub
parent 980d18ee57
commit 78deb0828c
2 changed files with 3 additions and 3 deletions

View File

@@ -1115,11 +1115,11 @@ TEST_F(ParagraphTest, GetWordBoundaryParagraph) {
rect = GetCoordinatesForGlyphPosition(*paragraph, 5);
GetCanvas()->drawLine(rect.fLeft, rect.fTop, rect.fLeft, rect.fBottom, paint);
EXPECT_EQ(paragraph->GetWordBoundary(5), txt::Paragraph::Range<size_t>(5, 6));
EXPECT_EQ(paragraph->GetWordBoundary(5), txt::Paragraph::Range<size_t>(5, 7));
rect = GetCoordinatesForGlyphPosition(*paragraph, 6);
GetCanvas()->drawLine(rect.fLeft, rect.fTop, rect.fLeft, rect.fBottom, paint);
EXPECT_EQ(paragraph->GetWordBoundary(6), txt::Paragraph::Range<size_t>(6, 7));
EXPECT_EQ(paragraph->GetWordBoundary(6), txt::Paragraph::Range<size_t>(5, 7));
rect = GetCoordinatesForGlyphPosition(*paragraph, 7);
GetCanvas()->drawLine(rect.fLeft, rect.fTop, rect.fLeft, rect.fBottom, paint);

View File

@@ -28,7 +28,7 @@
namespace txt {
RenderTest::RenderTest()
: snapshots_(0), font_collection_(GetTestFontCollection()) {}
: snapshots_(0), font_collection_(txt::GetTestFontCollection()) {}
RenderTest::~RenderTest() = default;