liuxiaocs7 commented on code in PR #8185:
URL: https://github.com/apache/hbase/pull/8185#discussion_r3177890442


##########
hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestCompactorMemLeak.java:
##########
@@ -89,16 +88,16 @@ public static void tearDown() throws Exception {
   private void assertMajorCompactionOK(TableName tableName) {
     List<HRegion> regions = 
UTIL.getHBaseCluster().getRegionServerThreads().get(0).getRegionServer()
       .getRegions(tableName);
-    Assert.assertEquals(regions.size(), 1);
+    assertEquals(regions.size(), 1);
     HRegion region = regions.get(0);
-    Assert.assertEquals(region.getStores().size(), 1);
+    assertEquals(region.getStores().size(), 1);
     HStore store = region.getStore(FAMILY);
-    Assert.assertEquals(store.getStorefilesCount(), 1);
+    assertEquals(store.getStorefilesCount(), 1);

Review Comment:
   Keep it consistent with before



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to