Skip to content
This repository has been archived by the owner on May 10, 2022. It is now read-only.

Commit

Permalink
add a little
Browse files Browse the repository at this point in the history
  • Loading branch information
olivertang committed Feb 12, 2022
1 parent 1bb1ecc commit cac18b7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ public void testBatchGet3() throws PException {
}

List<Pair<PException, byte[]>> getResult = new ArrayList<>();
table.batchGet3(pairs, getResult, 0);
int resultCount = table.batchGet3(pairs, getResult, 0);
Assert.assertEquals(101, resultCount);

for (int i = 0; i < 101; ++i) {
Assert.assertNull(getResult.get(i).getLeft());
Expand Down

0 comments on commit cac18b7

Please sign in to comment.