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:
Michael Stack 2011-04-29 19:36:42 +00:00
parent d663e19637
commit 15edb7b8e4
1 changed files with 4 additions and 1 deletions

View File

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