You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by vi...@apache.org on 2019/10/31 14:59:43 UTC

[incubator-hudi] branch master updated: [MINOR] fix annotation in teardown (#990)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7c7403a  [MINOR] fix annotation in teardown (#990)
7c7403a is described below

commit 7c7403a59dedc012fe2945e230a50f90139fce4b
Author: leesf <49...@qq.com>
AuthorDate: Thu Oct 31 22:59:35 2019 +0800

    [MINOR] fix annotation in teardown (#990)
---
 hudi-hive/src/test/java/org/apache/hudi/hive/TestHiveSyncTool.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hudi-hive/src/test/java/org/apache/hudi/hive/TestHiveSyncTool.java b/hudi-hive/src/test/java/org/apache/hudi/hive/TestHiveSyncTool.java
index f7cdb93..b253114 100644
--- a/hudi-hive/src/test/java/org/apache/hudi/hive/TestHiveSyncTool.java
+++ b/hudi-hive/src/test/java/org/apache/hudi/hive/TestHiveSyncTool.java
@@ -39,6 +39,7 @@ import org.apache.parquet.schema.OriginalType;
 import org.apache.parquet.schema.PrimitiveType;
 import org.apache.parquet.schema.Types;
 import org.joda.time.DateTime;
+import org.junit.After;
 import org.junit.Before;
 import org.junit.Test;
 import org.junit.runner.RunWith;
@@ -65,7 +66,7 @@ public class TestHiveSyncTool {
     TestUtil.setUp();
   }
 
-  @Before
+  @After
   public void teardown() throws IOException, InterruptedException {
     TestUtil.clear();
   }