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