@@ -752,7 +752,7 @@ public void testCacheIdleVerifyDump() throws Exception {
752
752
String dumpWithZeros = new String (Files .readAllBytes (Paths .get (fileNameMatcher .group (1 ))));
753
753
754
754
assertContains (log , dumpWithZeros , "The check procedure has finished, found " + parts + " partitions" );
755
- assertContains (log , dumpWithZeros , "Partition: PartitionKeyV2 [grpId=1544803905, grpName=default, partId=0]" );
755
+ assertContains (log , dumpWithZeros , "Partition: PartitionKey [grpId=1544803905, grpName=default, partId=0]" );
756
756
assertContains (log , dumpWithZeros , "updateCntr=0, partitionState=OWNING, size=0, partHash=0" );
757
757
assertContains (log , dumpWithZeros , "no conflicts have been found" );
758
758
assertCompactFooterStat (dumpWithZeros , 0 , 0 , 0 , keysCnt );
@@ -769,7 +769,7 @@ public void testCacheIdleVerifyDump() throws Exception {
769
769
770
770
assertContains (log , dumpWithoutZeros , "The check procedure has finished, found " + keysCnt + " partitions" );
771
771
assertContains (log , dumpWithoutZeros , (parts - keysCnt ) + " partitions was skipped" );
772
- assertContains (log , dumpWithoutZeros , "Partition: PartitionKeyV2 [grpId=1544803905, grpName=default, partId=" );
772
+ assertContains (log , dumpWithoutZeros , "Partition: PartitionKey [grpId=1544803905, grpName=default, partId=" );
773
773
774
774
assertNotContains (log , dumpWithoutZeros , "updateCntr=0, partitionState=OWNING, size=0, partHash=0" );
775
775
@@ -988,7 +988,7 @@ private void testCacheIdleVerifyMultipleCacheFilterOptionsCommon(
988
988
*/
989
989
private void assertSort (int expectedPartsCount , String output ) {
990
990
Pattern partIdPattern = Pattern .compile (".*partId=([0-9]*)" );
991
- Pattern primaryPattern = Pattern .compile ("Partition instances: \\ [PartitionHashRecordV2 \\ [isPrimary=true" );
991
+ Pattern primaryPattern = Pattern .compile ("Partition instances: \\ [PartitionHashRecord \\ [isPrimary=true" );
992
992
993
993
Matcher partIdMatcher = partIdPattern .matcher (output );
994
994
Matcher primaryMatcher = primaryPattern .matcher (output );
@@ -1250,7 +1250,7 @@ public void testCacheIdleVerifyDumpExcludedCaches() throws Exception {
1250
1250
/**
1251
1251
* @return Build matcher for dump file name.
1252
1252
*/
1253
- @ NotNull private Matcher dumpFileNameMatcher () {
1253
+ @ NotNull static Matcher dumpFileNameMatcher () {
1254
1254
Pattern fileNamePattern = Pattern .compile (".*" + IdleVerifyDumpTask .class .getSimpleName ()
1255
1255
+ " successfully written output to '(.*)'" );
1256
1256
return fileNamePattern .matcher (testOut .toString ());
0 commit comments