Apply re-formatting to C++ in src/ tree.
[alexxy/gromacs.git] / src / gromacs / utility / tests / stringutil.cpp
index 0b2acccc24fbf04f965070cda6704c4c955f8816..db0c1f1857ecf1c6fdcae4f80c5f6ef4e4b1aad2 100644 (file)
@@ -241,8 +241,8 @@ TEST(formatAndJoinTest, Works)
 {
     const char* const words[] = { "The", "quick", "brown", "fox" };
     EXPECT_EQ("The       .quick     .brown     .fox       ",
-              gmx::formatAndJoin(gmx::ArrayRef<const char* const>(words), ".",
-                                 gmx::StringFormatter("%-10s")));
+              gmx::formatAndJoin(
+                      gmx::ArrayRef<const char* const>(words), ".", gmx::StringFormatter("%-10s")));
 
     const int values[] = { 0, 1, 4 };
     EXPECT_EQ("0,1,4",