Oops, wrap a couple of lines.

Change-Id: I88d63e642062fe7e2fa3dbf23946841b18797803
Reviewed-on: https://code-review.googlesource.com/c/re2/+/46826
Reviewed-by: Paul Wankadia <junyer@google.com>
diff --git a/re2/testing/random_test.cc b/re2/testing/random_test.cc
index 956275a..44712eb 100644
--- a/re2/testing/random_test.cc
+++ b/re2/testing/random_test.cc
@@ -38,8 +38,10 @@
 
   ExhaustiveTester t(maxatoms, maxops, alphabet, ops,
                      maxstrlen, stralphabet, wrapper, "");
-  t.RandomStrings(GetFlag(FLAGS_stringseed), GetFlag(FLAGS_stringcount));
-  t.GenerateRandom(GetFlag(FLAGS_regexpseed), GetFlag(FLAGS_regexpcount));
+  t.RandomStrings(GetFlag(FLAGS_stringseed),
+                  GetFlag(FLAGS_stringcount));
+  t.GenerateRandom(GetFlag(FLAGS_regexpseed),
+                   GetFlag(FLAGS_regexpcount));
   printf("%d regexps, %d tests, %d failures [%d/%d str]\n",
          t.regexps(), t.tests(), t.failures(), maxstrlen, (int)stralphabet.size());
   EXPECT_EQ(0, t.failures());