Fix run entry check after name change.
The benchmark infrastructure changed the base run method from runD8 to
runAndBenchmarkD8.
Change-Id: I161873db7651734f55eed40e0934ec0f32e7edac
diff --git a/src/test/java/com/android/tools/r8/diagnostics/ErrorDuringIrConversionTest.java b/src/test/java/com/android/tools/r8/diagnostics/ErrorDuringIrConversionTest.java
index 436dc43..5fe49e5 100644
--- a/src/test/java/com/android/tools/r8/diagnostics/ErrorDuringIrConversionTest.java
+++ b/src/test/java/com/android/tools/r8/diagnostics/ErrorDuringIrConversionTest.java
@@ -71,8 +71,8 @@
String restStackTrace = fullStackTrace.substring(topStackTraceEnd);
// Check that top stack trace always has the version marker.
assertThat(topStackTrace, containsString("fakeStackEntry"));
- // Check that top stack has the D8 entry (from tests the non-renamed entry is ToolHelper.runD8).
- assertThat(topStackTrace, containsString("com.android.tools.r8.ToolHelper.runD8("));
+ // Check that top stack has the D8 entry (from tests the non-renamed entry is ToolHelper.runX).
+ assertThat(topStackTrace, containsString("com.android.tools.r8.ToolHelper.run"));
// Check that the stack trace always has the suppressed info.
assertThat(restStackTrace, containsString(StringUtils.LINE_SEPARATOR + "\tSuppressed:"));
// Custom test checks.