HBASE-1502 Aftermath; fix up of broke tests. Fix TestCatalogTracker hang; mocks needed changing
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1097928 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d663e19637
commit
15edb7b8e4
|
@ -289,7 +289,10 @@ public class TestCatalogTracker {
|
|||
List<KeyValue> kvs = new ArrayList<KeyValue>();
|
||||
kvs.add(new KeyValue(HConstants.EMPTY_BYTE_ARRAY,
|
||||
HConstants.CATALOG_FAMILY, HConstants.SERVER_QUALIFIER,
|
||||
Bytes.toBytes(SN.toString())));
|
||||
Bytes.toBytes(SN.getHostAndPort())));
|
||||
kvs.add(new KeyValue(HConstants.EMPTY_BYTE_ARRAY,
|
||||
HConstants.CATALOG_FAMILY, HConstants.STARTCODE_QUALIFIER,
|
||||
Bytes.toBytes(SN.getStartcode())));
|
||||
final Result result = new Result(kvs);
|
||||
Mockito.when(mockHRI.get((byte [])Mockito.any(), (Get)Mockito.any())).
|
||||
thenReturn(result);
|
||||
|
|
Loading…
Reference in New Issue