HBASE-17606 Fix failing TestRpcControllerFactory introduced by HBASE-17508
This commit is contained in:
parent
9a78d00884
commit
5c77a7dcd4
|
@ -170,7 +170,7 @@ public class TestRpcControllerFactory {
|
|||
ResultScanner scan = table.getScanner(fam1);
|
||||
scan.next();
|
||||
scan.close();
|
||||
counter = verifyCount(counter + 2);
|
||||
counter = verifyCount(counter + 1);
|
||||
|
||||
Get g2 = new Get(row);
|
||||
table.get(Lists.newArrayList(g, g2));
|
||||
|
@ -189,7 +189,7 @@ public class TestRpcControllerFactory {
|
|||
|
||||
// reversed, regular
|
||||
scanInfo.setSmall(false);
|
||||
counter = doScan(table, scanInfo, counter + 2);
|
||||
counter = doScan(table, scanInfo, counter + 1);
|
||||
|
||||
table.close();
|
||||
connection.close();
|
||||
|
|
Loading…
Reference in New Issue