Revert "HDFS-13287. TestINodeFile#testGetBlockType results in NPE when run alone. Contributed by Virajith Jalaparti."

This reverts commit a1c3868c4f.
This commit is contained in:
Wei-Chiu Chuang 2019-06-19 06:27:02 -07:00
parent 48e564f7e2
commit d3ac516665
1 changed files with 0 additions and 1 deletions

View File

@ -296,7 +296,6 @@ public class TestINodeFile {
preferredBlockSize = 128*1024*1024;
INodeFile inf = createINodeFile(replication, preferredBlockSize);
assertEquals(inf.getBlockType(), CONTIGUOUS);
ErasureCodingPolicyManager.getInstance().init(new Configuration());
INodeFile striped = createStripedINodeFile(preferredBlockSize);
assertEquals(striped.getBlockType(), STRIPED);
}