HDFS-6872. Fix TestOptionsParser. (clamb)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/fs-encryption@1618974 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Charles Lamb 2014-08-19 20:41:15 +00:00
parent 0cc08f6da4
commit 14b01dd046
2 changed files with 4 additions and 1 deletions

View File

@ -14,5 +14,7 @@ fs-encryption (Unreleased)
MAPREDUCE-6007. Add support to distcp to preserve raw.* namespace
extended attributes. (clamb)
HDFS-6872. Fix TestOptionsParser. (clamb)
BUG FIXES

View File

@ -357,7 +357,8 @@ public void testToString() {
DistCpOptions option = new DistCpOptions(new Path("abc"), new Path("xyz"));
String val = "DistCpOptions{atomicCommit=false, syncFolder=false, deleteMissing=false, " +
"ignoreFailures=false, maxMaps=20, sslConfigurationFile='null', copyStrategy='uniformsize', " +
"sourceFileListing=abc, sourcePaths=null, targetPath=xyz, targetPathExists=true}";
"sourceFileListing=abc, sourcePaths=null, targetPath=xyz, targetPathExists=true, " +
"preserveRawXattrs=false}";
Assert.assertEquals(val, option.toString());
Assert.assertNotSame(DistCpOptionSwitch.ATOMIC_COMMIT.toString(),
DistCpOptionSwitch.ATOMIC_COMMIT.name());