You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ap...@apache.org on 2021/01/04 23:06:30 UTC

[incubator-pinot] branch cleanup-junit-imports-20210104 created (now 69100fa)

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

apucher pushed a change to branch cleanup-junit-imports-20210104
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


      at 69100fa  remove junit imports

This branch includes the following new commits:

     new 69100fa  remove junit imports

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[incubator-pinot] 01/01: remove junit imports

Posted by ap...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

apucher pushed a commit to branch cleanup-junit-imports-20210104
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git

commit 69100fab0e22f3a866074fff5076bf84a45c022b
Author: Alexander Pucher <al...@alexpucher.com>
AuthorDate: Mon Jan 4 15:05:08 2021 -0800

    remove junit imports
---
 .../org/apache/pinot/controller/api/SegmentCompletionUtilsTest.java    | 2 +-
 .../pinot/controller/helix/core/util/SegmentDeletionManagerTest.java   | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/pinot-controller/src/test/java/org/apache/pinot/controller/api/SegmentCompletionUtilsTest.java b/pinot-controller/src/test/java/org/apache/pinot/controller/api/SegmentCompletionUtilsTest.java
index 6e651cc..11cb8ba 100644
--- a/pinot-controller/src/test/java/org/apache/pinot/controller/api/SegmentCompletionUtilsTest.java
+++ b/pinot-controller/src/test/java/org/apache/pinot/controller/api/SegmentCompletionUtilsTest.java
@@ -18,8 +18,8 @@
  */
 package org.apache.pinot.controller.api;
 
-import junit.framework.Assert;
 import org.apache.pinot.controller.util.SegmentCompletionUtils;
+import org.testng.Assert;
 import org.testng.annotations.Test;
 
 
diff --git a/pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/util/SegmentDeletionManagerTest.java b/pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/util/SegmentDeletionManagerTest.java
index 5fa2517..e85a9b7 100644
--- a/pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/util/SegmentDeletionManagerTest.java
+++ b/pinot-controller/src/test/java/org/apache/pinot/controller/helix/core/util/SegmentDeletionManagerTest.java
@@ -46,12 +46,11 @@ import org.apache.pinot.spi.filesystem.PinotFSFactory;
 import org.joda.time.DateTime;
 import org.mockito.invocation.InvocationOnMock;
 import org.mockito.stubbing.Answer;
+import org.testng.Assert;
 import org.testng.annotations.Test;
 
 import com.google.common.io.Files;
 
-import junit.framework.Assert;
-
 
 public class SegmentDeletionManagerTest {
   final static String tableName = "table";


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org