Skip to content

Commit

Permalink
fix checkstyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sunhelly committed Nov 17, 2021
1 parent 60e11db commit 3aa031b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,8 @@ public void testContinuousSplitUsingLinkFile() throws Exception {
// now table has 3 region, each region should have one link file
for (HRegion newRegion : cluster.getRegions(tableName)) {
assertEquals(1, newRegion.getStore(cf).getStorefilesCount());
assertTrue(HFileLink.isHFileLink(newRegion.getStore(cf).getStorefiles().iterator().next().getPath()));
assertTrue(
HFileLink.isHFileLink(newRegion.getStore(cf).getStorefiles().iterator().next().getPath()));
}

scan = new Scan();
Expand Down

0 comments on commit 3aa031b

Please sign in to comment.