You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2022/12/17 22:50:30 UTC

[accumulo] branch main updated: Remove test and jar that uses the deprecated Constraint api (#3133)

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

ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new bd176df5a7 Remove test and jar that uses the deprecated Constraint api (#3133)
bd176df5a7 is described below

commit bd176df5a7e57415e1c12b4a8b8e23dfe03998da
Author: Christopher L. Shannon <ch...@gmail.com>
AuthorDate: Sat Dec 17 17:50:26 2022 -0500

    Remove test and jar that uses the deprecated Constraint api (#3133)
    
    Constraint api was removed in #3116
---
 .../org/apache/accumulo/test/shell/ShellServerIT.java    |   8 --------
 .../resources/org/apache/accumulo/test/FooConstraint.jar | Bin 2130 -> 0 bytes
 2 files changed, 8 deletions(-)

diff --git a/test/src/main/java/org/apache/accumulo/test/shell/ShellServerIT.java b/test/src/main/java/org/apache/accumulo/test/shell/ShellServerIT.java
index 67290186d3..aad089df43 100644
--- a/test/src/main/java/org/apache/accumulo/test/shell/ShellServerIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/shell/ShellServerIT.java
@@ -1510,14 +1510,6 @@ public class ShellServerIT extends SharedMiniClusterBase {
     ts.exec("deletetable -f " + table, true);
   }
 
-  @Test
-  public void testPerTableClasspathLegacyJar() throws Exception {
-    final String table = getUniqueNames(1)[0];
-    File fooConstraintJar =
-        initJar("/org/apache/accumulo/test/FooConstraint.jar", "FooContraint", rootPath);
-    verifyPerTableClasspath(table, fooConstraintJar);
-  }
-
   @Test
   public void testPerTableClasspath_2_1_Jar() throws Exception {
     final String table = getUniqueNames(1)[0];
diff --git a/test/src/main/resources/org/apache/accumulo/test/FooConstraint.jar b/test/src/main/resources/org/apache/accumulo/test/FooConstraint.jar
deleted file mode 100644
index 14673da0ff..0000000000
Binary files a/test/src/main/resources/org/apache/accumulo/test/FooConstraint.jar and /dev/null differ