HDFS-15620. RBF: Fix test failures after HADOOP-17281 (#2375)

This commit is contained in:
Akira Ajisaka 2020-10-12 09:52:12 +09:00 committed by Steve Loughran
parent 13e0c5f6e0
commit 263b7d5dfc
2 changed files with 10 additions and 0 deletions

View File

@ -114,6 +114,11 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>mockito-core</artifactId> <artifactId>mockito-core</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>

View File

@ -71,4 +71,9 @@ public class TestRouterWebHDFSContractRootDirectory extends
public void testRmEmptyRootDirRecursive() { public void testRmEmptyRootDirRecursive() {
// It doesn't apply because we still have the mount points here // It doesn't apply because we still have the mount points here
} }
@Override
public void testSimpleRootListing() {
// It doesn't apply because DFSRouter dosn't support LISTSTATUS_BATCH.
}
} }