Fix Compilation Error in TestAddBlockgroup.java after the merge
This commit is contained in:
parent
0c1da5a030
commit
ec48013426
@ -26,7 +26,7 @@
|
|||||||
import org.apache.hadoop.hdfs.DistributedFileSystem;
|
import org.apache.hadoop.hdfs.DistributedFileSystem;
|
||||||
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||||
import org.apache.hadoop.hdfs.protocol.HdfsConstants;
|
import org.apache.hadoop.hdfs.protocol.HdfsConstants;
|
||||||
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfo;
|
import org.apache.hadoop.hdfs.server.blockmanagement.BlockInfoContiguous;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
@ -75,7 +75,7 @@ public void testAddBlockGroup() throws Exception {
|
|||||||
final Path file1 = new Path("/file1");
|
final Path file1 = new Path("/file1");
|
||||||
DFSTestUtil.createFile(fs, file1, BLOCKSIZE * 2, REPLICATION, 0L);
|
DFSTestUtil.createFile(fs, file1, BLOCKSIZE * 2, REPLICATION, 0L);
|
||||||
INodeFile file1Node = fsdir.getINode4Write(file1.toString()).asFile();
|
INodeFile file1Node = fsdir.getINode4Write(file1.toString()).asFile();
|
||||||
BlockInfo[] file1Blocks = file1Node.getBlocks();
|
BlockInfoContiguous[] file1Blocks = file1Node.getBlocks();
|
||||||
assertEquals(2, file1Blocks.length);
|
assertEquals(2, file1Blocks.length);
|
||||||
assertEquals(GROUP_SIZE, file1Blocks[0].numNodes());
|
assertEquals(GROUP_SIZE, file1Blocks[0].numNodes());
|
||||||
assertEquals(HdfsConstants.MAX_BLOCKS_IN_GROUP,
|
assertEquals(HdfsConstants.MAX_BLOCKS_IN_GROUP,
|
||||||
|
Loading…
Reference in New Issue
Block a user