Index: third_party/WebKit/Source/platform/fonts/SymbolsIteratorTest.cpp |
diff --git a/third_party/WebKit/Source/platform/fonts/SymbolsIteratorTest.cpp b/third_party/WebKit/Source/platform/fonts/SymbolsIteratorTest.cpp |
index e61feee2546a836d79a12efd03e60a6a6d621b70..7b977e9f3ec04738c5f93ba837b3ca759541a3aa 100644 |
--- a/third_party/WebKit/Source/platform/fonts/SymbolsIteratorTest.cpp |
+++ b/third_party/WebKit/Source/platform/fonts/SymbolsIteratorTest.cpp |
@@ -29,7 +29,7 @@ class SymbolsIteratorTest : public testing::Test { |
Vector<ExpectedRun> expect; |
for (auto& run : runs) { |
text.append(String::fromUTF8(run.text.c_str())); |
- expect.append(ExpectedRun(text.length(), run.fontFallbackPriority)); |
+ expect.push_back(ExpectedRun(text.length(), run.fontFallbackPriority)); |
} |
SymbolsIterator symbolsIterator(text.characters16(), text.length()); |
VerifyRuns(&symbolsIterator, expect); |