Index: third_party/WebKit/Source/platform/fonts/SmallCapsIteratorTest.cpp |
diff --git a/third_party/WebKit/Source/platform/fonts/SmallCapsIteratorTest.cpp b/third_party/WebKit/Source/platform/fonts/SmallCapsIteratorTest.cpp |
index f2127cfe75a5a7551b4a30ba33ea599cedcc483c..9245ba64ec571699d699ac446884eeebe9e46e17 100644 |
--- a/third_party/WebKit/Source/platform/fonts/SmallCapsIteratorTest.cpp |
+++ b/third_party/WebKit/Source/platform/fonts/SmallCapsIteratorTest.cpp |
@@ -30,7 +30,7 @@ class SmallCapsIteratorTest : public testing::Test { |
Vector<ExpectedRun> expect; |
for (auto& run : runs) { |
text.append(String::fromUTF8(run.text.c_str())); |
- expect.append(ExpectedRun(text.length(), run.code)); |
+ expect.push_back(ExpectedRun(text.length(), run.code)); |
} |
SmallCapsIterator smallCapsIterator(text.characters16(), text.length()); |
VerifyRuns(&smallCapsIterator, expect); |