Update expected line numbers after adding file header.

R=sgjesse

Change-Id: I91fbe28b132d8e0d3910d7cab6b4a26c89590756
diff --git a/src/test/java/com/android/tools/r8/debuginfo/ConditionalLocalTestRunner.java b/src/test/java/com/android/tools/r8/debuginfo/ConditionalLocalTestRunner.java
index c793f3e..8348c0b 100644
--- a/src/test/java/com/android/tools/r8/debuginfo/ConditionalLocalTestRunner.java
+++ b/src/test/java/com/android/tools/r8/debuginfo/ConditionalLocalTestRunner.java
@@ -29,13 +29,13 @@
   private void checkConditonalLocal(DebugInfoInspector info) {
     String self = ConditionalLocalTest.class.getCanonicalName();
     String Integer = "java.lang.Integer";
-    info.checkStartLine(6);
-    info.checkLineHasExactLocals(6, "this", self, "x", "int");
-    info.checkLineHasExactLocals(7, "this", self, "x", "int");
-    info.checkLineHasExactLocals(8, "this", self, "x", "int", "obj", Integer);
-    info.checkLineHasExactLocals(9, "this", self, "x", "int", "obj", Integer, "l", "long");
-    info.checkLineHasExactLocals(10, "this", self, "x", "int", "obj", Integer, "l", "long");
-    info.checkNoLine(11);
-    info.checkLineHasExactLocals(12, "this", self, "x", "int");
+    info.checkStartLine(9);
+    info.checkLineHasExactLocals(9, "this", self, "x", "int");
+    info.checkLineHasExactLocals(10, "this", self, "x", "int");
+    info.checkLineHasExactLocals(11, "this", self, "x", "int", "obj", Integer);
+    info.checkLineHasExactLocals(12, "this", self, "x", "int", "obj", Integer, "l", "long");
+    info.checkLineHasExactLocals(13, "this", self, "x", "int", "obj", Integer, "l", "long");
+    info.checkNoLine(14);
+    info.checkLineHasExactLocals(15, "this", self, "x", "int");
   }
 }