Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(472)

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLParserIdiomsTest.cpp

Issue 1701903002: Fix arguments order to EXPECT_EQ in HTMLParserIdiomsTest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/parser/HTMLParserIdiomsTest.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLParserIdiomsTest.cpp b/third_party/WebKit/Source/core/html/parser/HTMLParserIdiomsTest.cpp
index 1bb5f2e7fdaf63353b77d9c795bd5e57ef08d18b..0c5b063b7b48273fd324372aa44bfc72c30cd1f5 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLParserIdiomsTest.cpp
+++ b/third_party/WebKit/Source/core/html/parser/HTMLParserIdiomsTest.cpp
@@ -13,7 +13,7 @@ namespace {
TEST(HTMLParserIdiomsTest, ParseHTMLListOfFloatingPointNumbers_null)
{
Vector<double> numbers = parseHTMLListOfFloatingPointNumbers(nullAtom);
- EXPECT_EQ(numbers.size(), 0u);
+ EXPECT_EQ(0u, numbers.size());
}
} // namespace
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698