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:
parent
bdc56078d4
commit
6e72b3cef3
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue