aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/GlyphRunTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/GlyphRunTest.cpp')
-rw-r--r--tests/GlyphRunTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/GlyphRunTest.cpp b/tests/GlyphRunTest.cpp
index 49d7340aca..9cd9c4ff83 100644
--- a/tests/GlyphRunTest.cpp
+++ b/tests/GlyphRunTest.cpp
@@ -86,9 +86,9 @@ DEF_TEST(GlyphRunBlob, reporter) {
auto runList = runBuilder.useGlyphRunList();
- REPORTER_ASSERT(reporter, runList->size() == runCount);
+ REPORTER_ASSERT(reporter, runList.size() == runCount);
int runIndex = 0;
- for (auto& run : *runList) {
+ for (auto& run : runList) {
REPORTER_ASSERT(reporter, run.runSize() == count);
int index = 0;