HBASE-19504 Add TimeRange support into checkAndMutate; ADDENDUM to fix failing unit test

This commit is contained in:
Michael Stack 2018-03-24 12:29:45 -07:00
parent 52014b9423
commit 5da92ce352
1 changed files with 2 additions and 1 deletions

View File

@ -342,7 +342,8 @@ public class TestAsyncTable {
@Test
public void testCheckAndMutateWithTimeRange() throws Exception {
TEST_UTIL.createTable(TableName.valueOf("testCheckAndMutateWithTimeRange"), FAMILY);
TEST_UTIL.createTable(TableName.valueOf("testCheckAndMutateWithTimeRange" +
System.currentTimeMillis()), FAMILY);
AsyncTable<?> table = getTable.get();
final long ts = System.currentTimeMillis() / 2;
Put put = new Put(row);