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

Unified Diff: third_party/WebKit/Source/platform/PODIntervalTreeTest.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 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
Index: third_party/WebKit/Source/platform/PODIntervalTreeTest.cpp
diff --git a/third_party/WebKit/Source/platform/PODIntervalTreeTest.cpp b/third_party/WebKit/Source/platform/PODIntervalTreeTest.cpp
index 0ed9933e3b3dcf4b05650c6ff14192cad46ee40c..d794ddbffa7673d88e419b7cd14d190737b9f1e0 100644
--- a/third_party/WebKit/Source/platform/PODIntervalTreeTest.cpp
+++ b/third_party/WebKit/Source/platform/PODIntervalTreeTest.cpp
@@ -125,8 +125,8 @@ struct UserData1 {
template <>
struct ValueToString<UserData1> {
static String toString(const UserData1& value) {
- return String("[UserData1 a=") + String::number(value.a) + " b=" +
- String::number(value.b) + "]";
+ return String("[UserData1 a=") + String::number(value.a) +
+ " b=" + String::number(value.b) + "]";
}
};
#endif
@@ -236,8 +236,8 @@ void InsertionAndDeletionTest(int32_t seed, int treeSize) {
<< ValueToString<PODInterval<int>>::string(
addedElements[index]);
#endif
- ASSERT_TRUE(tree.contains(addedElements[index])) << "Test failed for seed "
- << seed;
+ ASSERT_TRUE(tree.contains(addedElements[index]))
+ << "Test failed for seed " << seed;
tree.remove(addedElements[index]);
removedElements.push_back(addedElements[index]);
addedElements.remove(index);
@@ -271,8 +271,8 @@ void InsertionAndDeletionTest(int32_t seed, int treeSize) {
#endif
ASSERT_TRUE(tree.contains(addedElements[index]))
<< "Test failed for seed " << seed;
- ASSERT_TRUE(tree.remove(addedElements[index])) << "Test failed for seed "
- << seed;
+ ASSERT_TRUE(tree.remove(addedElements[index]))
+ << "Test failed for seed " << seed;
removedElements.push_back(addedElements[index]);
addedElements.remove(index);
}
« no previous file with comments | « third_party/WebKit/Source/platform/DecimalTest.cpp ('k') | third_party/WebKit/Source/platform/SharedBufferTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698