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

Unified Diff: third_party/WebKit/Source/platform/geometry/FloatBoxTest.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/geometry/FloatQuadTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/geometry/FloatBoxTest.cpp
diff --git a/third_party/WebKit/Source/platform/geometry/FloatBoxTest.cpp b/third_party/WebKit/Source/platform/geometry/FloatBoxTest.cpp
index caad8a0835a3080a9d9d4240de83c4ffb5e9e3d0..26f206c31510f08d5c5024d35f31e32fdc05051c 100644
--- a/third_party/WebKit/Source/platform/geometry/FloatBoxTest.cpp
+++ b/third_party/WebKit/Source/platform/geometry/FloatBoxTest.cpp
@@ -118,7 +118,7 @@ TEST(FloatBoxTest, EmptyBoxTest)
TEST(FloatBoxTest, ToString)
{
FloatBox box(2, 3, 5, 7, 11, 13);
- EXPECT_EQ(String("2,3,5 7x11x13"), box.toString());
+ EXPECT_EQ("2,3,5 7x11x13", box.toString());
}
} // namespace blink
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/geometry/FloatQuadTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698