Github user chandrasaripaka commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2161#discussion_r238211698
--- Diff:
core/src/test/java/org/apache/carbondata/core/datastore/filesystem/AlluxioCarbonFileTest.java
---
@@ -108,12 +121,12 @@ public void testListFilesForNullListStatus() {
alluxioCarbonFile = new
AlluxioCarbonFile(fileStatusWithOutDirectoryPermission);
new MockUp<Path>() {
@Mock
- public FileSystem getFileSystem(Configuration conf) throws
IOException {
- return new DistributedFileSystem();
+ public FileSystem get(FileSystemContext context) throws
IOException {
--- End diff --
Fixed the test in the latest push
---