Skip to content

Commit

Permalink
fix a unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
ndimiduk committed Feb 24, 2022
1 parent 271bc35 commit a4ca004
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ private void validateDaughterRegionsFiles(HRegion region, String orignalFileName
List<StoreFileInfo> infos = region.getRegionFileSystem().getStoreFiles("info");
final MutableBoolean foundLink = new MutableBoolean(false);
infos.stream().forEach(i -> {
i.getActiveFileName().contains(orignalFileName);
assertTrue(i.getActiveFileName().contains(orignalFileName));
if(i.getActiveFileName().contains(untrackedFile)){
fail();
}
Expand Down

0 comments on commit a4ca004

Please sign in to comment.