summaryrefslogtreecommitdiffstats
path: root/tests/FontFamilyTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FontFamilyTest.cpp')
-rw-r--r--tests/FontFamilyTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/FontFamilyTest.cpp b/tests/FontFamilyTest.cpp
index 194063f..1b24576 100644
--- a/tests/FontFamilyTest.cpp
+++ b/tests/FontFamilyTest.cpp
@@ -339,10 +339,10 @@ void expectVSGlyphs(FontFamily* family, uint32_t codepoint, const std::set<uint3
i = 0xE0100;
}
if (vs.find(i) == vs.end()) {
- EXPECT_FALSE(family->hasVariationSelector(codepoint, i))
+ EXPECT_FALSE(family->hasGlyph(codepoint, i))
<< "Glyph for U+" << std::hex << codepoint << " U+" << i;
} else {
- EXPECT_TRUE(family->hasVariationSelector(codepoint, i))
+ EXPECT_TRUE(family->hasGlyph(codepoint, i))
<< "Glyph for U+" << std::hex << codepoint << " U+" << i;
}