HDFS-3143. TestGetBlocks.testGetBlocks is failing. Contributed by Arpit Gupta.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1306542 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Aaron Myers 2012-03-28 19:02:16 +00:00
parent 991eddd043
commit aa8cb2287f
2 changed files with 3 additions and 1 deletions

View File

@ -362,6 +362,8 @@ Release 2.0.0 - UNRELEASED
HDFS-3156. TestDFSHAAdmin is failing post HADOOP-8202. (atm) HDFS-3156. TestDFSHAAdmin is failing post HADOOP-8202. (atm)
HDFS-3143. TestGetBlocks.testGetBlocks is failing. (Arpit Gupta via atm)
BREAKDOWN OF HDFS-1623 SUBTASKS BREAKDOWN OF HDFS-1623 SUBTASKS
HDFS-2179. Add fencing framework and mechanisms for NameNode HA. (todd) HDFS-2179. Add fencing framework and mechanisms for NameNode HA. (todd)

View File

@ -135,7 +135,7 @@ public class TestGetBlocks extends TestCase {
namenode.getBlocks(new DatanodeInfo(), 2); namenode.getBlocks(new DatanodeInfo(), 2);
} catch(RemoteException e) { } catch(RemoteException e) {
getException = true; getException = true;
assertTrue(e.getMessage().contains("IllegalArgumentException")); assertTrue(e.getClassName().contains("HadoopIllegalArgumentException"));
} }
assertTrue(getException); assertTrue(getException);
} }