summaryrefslogtreecommitdiff
path: root/test/text/shaping.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/text/shaping.test.cpp')
-rw-r--r--test/text/shaping.test.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/text/shaping.test.cpp b/test/text/shaping.test.cpp
index 53f8505393..d86bf30eb9 100644
--- a/test/text/shaping.test.cpp
+++ b/test/text/shaping.test.cpp
@@ -25,6 +25,8 @@ TEST(Shaping, ZWSP) {
auto immutableGlyph = Immutable<Glyph>(makeMutable<Glyph>(std::move(glyph)));
const std::vector<std::string> fontStack{{"font-stack"}};
const SectionOptions sectionOptions(1.0f, fontStack);
+ const float layoutTextSize = 16.0f;
+ const float layoutTextSizeAtBucketZoomLevel = 16.0f;
GlyphMap glyphs = {
{ FontStackHasher()(fontStack), {{u'中', std::move(immutableGlyph)}} }
};
@@ -44,7 +46,8 @@ TEST(Shaping, ZWSP) {
glyphs,
glyphPositions,
imagePositions,
- 16.0,
+ layoutTextSize,
+ layoutTextSizeAtBucketZoomLevel,
/*allowVerticalPlacement*/ false);
};