Fix TestHDFSFileContextMainOperations.

Change-Id: If657c2fd2b73f7479f87d786e00b1aab20fe8d33
This commit is contained in:
Siyao Meng 2021-08-19 22:43:27 -07:00
parent cfab28a0ee
commit 2c41ebb2cd
1 changed files with 10 additions and 11 deletions

View File

@ -18,15 +18,6 @@
package org.apache.hadoop.fs;
import static org.apache.hadoop.fs.FileContextTestHelper.exists;
import static org.junit.jupiter.api.Assertions.fail;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import javax.security.auth.login.LoginException;
import org.apache.hadoop.fs.Options.Rename;
import org.apache.hadoop.hdfs.AppendTestUtil;
import org.apache.hadoop.hdfs.DistributedFileSystem;
@ -44,6 +35,14 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import javax.security.auth.login.LoginException;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import static org.apache.hadoop.fs.FileContextTestHelper.exists;
import static org.junit.jupiter.api.Assertions.fail;
public class TestHDFSFileContextMainOperations extends
FileContextMainOperationsBaseTest {
private static MiniDFSCluster cluster;
@ -324,8 +323,8 @@ public class TestHDFSFileContextMainOperations extends
};
for (String invalidName: invalidNames) {
Assert.assertFalse(
fc.getDefaultFileSystem().isValidName(invalidName), invalidName + " is not valid");
Assert.assertFalse(invalidName + " is not valid",
fc.getDefaultFileSystem().isValidName(invalidName));
}
}