HBASE-3195 [rest] Fix TestTransform breakage on Hudson; take 2
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1031959 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6fd4989c82
commit
ce7567c23b
|
@ -91,7 +91,7 @@ public class TestTransform {
|
|||
assertEquals(response.getCode(), 200);
|
||||
|
||||
// get the table contents directly
|
||||
HTable table = new HTable(TABLE);
|
||||
HTable table = new HTable(TEST_UTIL.getConfiguration(), TABLE);
|
||||
Get get = new Get(Bytes.toBytes(ROW_1));
|
||||
get.addFamily(Bytes.toBytes(CFA));
|
||||
get.addFamily(Bytes.toBytes(CFB));
|
||||
|
|
Loading…
Reference in New Issue