HDFS-13591. TestDFSShell#testSetrepLow fails on Windows. Contributed by Anbang Hu.

This commit is contained in:
Inigo Goiri 2018-05-28 16:34:02 -07:00
parent 91d7c74e6a
commit 9dbf4f0166
1 changed files with 5 additions and 5 deletions

View File

@ -2829,11 +2829,11 @@ public class TestDFSShell {
System.setErr(origErr);
}
assertEquals("Error message is not the expected error message",
"setrep: Requested replication factor of 1 is less than "
+ "the required minimum of 2 for /tmp/TestDFSShell-"
+ "testSetrepLow/testFileForSetrepLow\n",
bao.toString());
assertTrue("Error message is not the expected error message"
+ bao.toString(), bao.toString().startsWith(
"setrep: Requested replication factor of 1 is less than "
+ "the required minimum of 2 for /tmp/TestDFSShell-"
+ "testSetrepLow/testFileForSetrepLow"));
} finally {
shell.close();
cluster.shutdown();