Small fix to TestFullLogReconstruction to make it pass
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1003182 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f6743a1b75
commit
7ce5812dfe
|
@ -93,9 +93,7 @@ public class TestFullLogReconstruction {
|
||||||
@Test
|
@Test
|
||||||
public void testReconstruction() throws Exception {
|
public void testReconstruction() throws Exception {
|
||||||
|
|
||||||
TEST_UTIL.createTable(TABLE_NAME, FAMILY);
|
HTable table = TEST_UTIL.createTable(TABLE_NAME, FAMILY);
|
||||||
|
|
||||||
HTable table = new HTable(TABLE_NAME);
|
|
||||||
|
|
||||||
TEST_UTIL.createMultiRegions(table, Bytes.toBytes("family"));
|
TEST_UTIL.createMultiRegions(table, Bytes.toBytes("family"));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue