Fix outliner test by moving to the same line

Change-Id: I4e45e779614f0728397d9f24378c9ed5ffe95d36
diff --git a/src/test/java/com/android/tools/r8/ir/optimize/outliner/OutlineMappingInformationTest.java b/src/test/java/com/android/tools/r8/ir/optimize/outliner/OutlineMappingInformationTest.java
index 111cc8c..1979d34 100644
--- a/src/test/java/com/android/tools/r8/ir/optimize/outliner/OutlineMappingInformationTest.java
+++ b/src/test/java/com/android/tools/r8/ir/optimize/outliner/OutlineMappingInformationTest.java
@@ -125,8 +125,8 @@
 
     @NeverInline
     static void greet() {
-      Greeter.throwExceptionFirst();
-      Greeter.throwExceptionSecond();
+      // Keep on same line
+      Greeter.throwExceptionFirst(); Greeter.throwExceptionSecond();
     }
   }