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:
Andrew Kyle Purtell 2010-11-06 04:50:16 +00:00
parent 6fd4989c82
commit ce7567c23b
1 changed files with 1 additions and 1 deletions

View File

@ -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));