HBASE-2897 The test wasn't passing because the family wasn't parsed correctly

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@988746 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Daniel Cryans 2010-08-24 22:32:29 +00:00
parent bdc56078d4
commit 6e72b3cef3
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ public class TestRowResource extends HBaseRESTClusterTestBase {
}
public void testNoSuchCF() throws IOException, JAXBException {
final String goodPath = "/" + TABLE + "/" + ROW_1 + "/" + CFA;
final String goodPath = "/" + TABLE + "/" + ROW_1 + "/" + CFA+":";
final String badPath = "/" + TABLE + "/" + ROW_1 + "/" + "BAD";
Response response = client.post(goodPath, MIMETYPE_BINARY,
Bytes.toBytes(VALUE_1));