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

Unified Diff: third_party/WebKit/Source/platform/geometry/FloatQuadTest.cpp

Issue 2269713002: Remove redundant String casts in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
Index: third_party/WebKit/Source/platform/geometry/FloatQuadTest.cpp
diff --git a/third_party/WebKit/Source/platform/geometry/FloatQuadTest.cpp b/third_party/WebKit/Source/platform/geometry/FloatQuadTest.cpp
index 20c1977e79958ca625bd43cb958a0ce9d74e24d2..74f74bbc0130cd626e493806719b39c03af1b2c7 100644
--- a/third_party/WebKit/Source/platform/geometry/FloatQuadTest.cpp
+++ b/third_party/WebKit/Source/platform/geometry/FloatQuadTest.cpp
@@ -16,7 +16,7 @@ TEST(FloatQuadTest, ToString)
FloatPoint(5, 7),
FloatPoint(11, 13),
FloatPoint(17, 19));
- EXPECT_EQ(String("2,3; 5,7; 11,13; 17,19"), quad.toString());
+ EXPECT_EQ("2,3; 5,7; 11,13; 17,19", quad.toString());
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698