test/hotspot/jtreg/gc/g1/TestRemsetLoggingTools.java
changeset 58508 d6058bd73982
parent 53693 af078dd4a224
--- a/test/hotspot/jtreg/gc/g1/TestRemsetLoggingTools.java	Tue Oct 08 20:47:46 2019 +0200
+++ b/test/hotspot/jtreg/gc/g1/TestRemsetLoggingTools.java	Tue Oct 08 15:15:50 2019 -0400
@@ -110,7 +110,7 @@
     }
 
     public static void expectRSetSummaries(String result, int expectedCumulative, int expectedPeriodic) throws Exception {
-        int actualTotal = result.split("concurrent refinement").length - 1;
+        int actualTotal = result.split("concurrent refinement statistics").length - 1;
         int actualCumulative = result.split("Cumulative RS summary").length - 1;
 
         if (expectedCumulative != actualCumulative) {