You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uniffle.apache.org by ro...@apache.org on 2023/06/02 10:35:32 UTC

[incubator-uniffle] branch master updated: [MINOR] improvement(mr): Add @Test to activate test case (#923)

This is an automated email from the ASF dual-hosted git repository.

roryqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git


The following commit(s) were added to refs/heads/master by this push:
     new d09cdc22 [MINOR] improvement(mr): Add @Test to activate test case (#923)
d09cdc22 is described below

commit d09cdc22eb77306530c689ef273b51953e9095c2
Author: Qing <11...@qq.com>
AuthorDate: Fri Jun 2 18:35:27 2023 +0800

    [MINOR] improvement(mr): Add @Test to activate test case (#923)
    
    ### What changes were proposed in this pull request?
    Add @Test to activate test case
    
    ### Why are the changes needed?
    
    Just for Add @Test to activate test case
    
    ### Does this PR introduce _any_ user-facing change?
    No.
    
    ### How was this patch tested?
    unit test
---
 .../test/java/org/apache/hadoop/mapreduce/task/reduce/FetcherTest.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/client-mr/core/src/test/java/org/apache/hadoop/mapreduce/task/reduce/FetcherTest.java b/client-mr/core/src/test/java/org/apache/hadoop/mapreduce/task/reduce/FetcherTest.java
index 7fd68730..6beaaa6c 100644
--- a/client-mr/core/src/test/java/org/apache/hadoop/mapreduce/task/reduce/FetcherTest.java
+++ b/client-mr/core/src/test/java/org/apache/hadoop/mapreduce/task/reduce/FetcherTest.java
@@ -192,6 +192,7 @@ public class FetcherTest {
     assertEquals(2, ((MockMergeManagerImpl)merger).happenedFails.size());
   }
 
+  @Test
   public void testCodecIsDuplicated() throws Exception {
     fs = FileSystem.getLocal(conf);
     BZip2Codec codec = new BZip2Codec();