Jelajahi Sumber

HDFS-9517. Fix missing @Test annotation on TestDistCpUtils.testUnpackAttributes (Wei-Chiu Chuang via cmccabe)

(cherry picked from commit 8315582c4ff2951144b096c23a64e753f397572d)
Colin Patrick Mccabe 9 tahun lalu
induk
melakukan
2baeaa20a3

+ 3 - 0
hadoop-common-project/hadoop-common/CHANGES.txt

@@ -43,6 +43,9 @@ Release 2.9.0 - UNRELEASED
    HADOOP-12590. TestCompressorDecompressor failing without stack traces
    (John Zhuge via stevel)
 
+   HDFS-9517. Fix missing @Test annotation on
+   TestDistCpUtils.testUnpackAttributes (Wei-Chiu Chuang via cmccabe)
+
 Release 2.8.0 - UNRELEASED
 
   INCOMPATIBLE CHANGES

+ 1 - 0
hadoop-tools/hadoop-distcp/src/test/java/org/apache/hadoop/tools/util/TestDistCpUtils.java

@@ -104,6 +104,7 @@ public class TestDistCpUtils {
     Assert.assertEquals(DistCpUtils.packAttributes(attributes), "RBUGPCT");
   }
 
+  @Test
   public void testUnpackAttributes() {
     EnumSet<FileAttribute> attributes = EnumSet.allOf(FileAttribute.class);
     Assert.assertEquals(attributes, DistCpUtils.unpackAttributes("RCBUGPAXT"));