Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
sunhelly committed Feb 17, 2022
1 parent 25525fe commit 3dae794
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7047,7 +7047,8 @@ public void testCellTTLs() throws IOException {
assertNull(r.getValue(fam1, q1));
}

@Test public void testTTLsUsingSmallHeartBeatCells() throws IOException {
@Test
public void testTTLsUsingSmallHeartBeatCells() throws IOException {
IncrementingEnvironmentEdge edge = new IncrementingEnvironmentEdge();
EnvironmentEdgeManager.injectEdge(edge);

Expand All @@ -7072,7 +7073,7 @@ public void testCellTTLs() throws IOException {
// using small heart beat cells
conf.setLong(StoreScanner.HBASE_CELLS_SCANNED_PER_HEARTBEAT_CHECK, 2);

region = HBaseTestingUtility
region = HBaseTestingUtil
.createRegionAndWAL(RegionInfoBuilder.newBuilder(tableDescriptor.getTableName()).build(),
TEST_UTIL.getDataTestDir(), conf, tableDescriptor);
assertNotNull(region);
Expand Down

0 comments on commit 3dae794

Please sign in to comment.