This is an automated email from the ASF dual-hosted git repository. kturner 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 a731455e45 moves ShellIT out of simple suite (#5684) a731455e45 is described below commit a731455e453a0069d98cafa157dc655e616c6b2d Author: Keith Turner <ktur...@apache.org> AuthorDate: Thu Jun 26 17:05:38 2025 -0400 moves ShellIT out of simple suite (#5684) This test was changing all properties back to default values and this would cause other test to fail after it ran. When tablet group watcher scan time was changed from 5s to the default of 60s it would cause subsequent test to fail. --- .../apache/accumulo/test/shell/ShellAuthenticatorIT_SimpleSuite.java | 4 ++-- .../accumulo/test/shell/{ShellIT_SimpleSuite.java => ShellIT.java} | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/src/main/java/org/apache/accumulo/test/shell/ShellAuthenticatorIT_SimpleSuite.java b/test/src/main/java/org/apache/accumulo/test/shell/ShellAuthenticatorIT_SimpleSuite.java index 392c8671ac..18b8c1e5ff 100644 --- a/test/src/main/java/org/apache/accumulo/test/shell/ShellAuthenticatorIT_SimpleSuite.java +++ b/test/src/main/java/org/apache/accumulo/test/shell/ShellAuthenticatorIT_SimpleSuite.java @@ -26,8 +26,8 @@ import java.util.TimeZone; import org.apache.accumulo.harness.SharedMiniClusterBase; import org.apache.accumulo.shell.Shell; -import org.apache.accumulo.test.shell.ShellIT_SimpleSuite.StringInputStream; -import org.apache.accumulo.test.shell.ShellIT_SimpleSuite.TestOutputStream; +import org.apache.accumulo.test.shell.ShellIT.StringInputStream; +import org.apache.accumulo.test.shell.ShellIT.TestOutputStream; import org.jline.reader.LineReader; import org.jline.reader.LineReaderBuilder; import org.jline.terminal.Size; diff --git a/test/src/main/java/org/apache/accumulo/test/shell/ShellIT_SimpleSuite.java b/test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java similarity index 99% rename from test/src/main/java/org/apache/accumulo/test/shell/ShellIT_SimpleSuite.java rename to test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java index ce86fd890f..2f2bf1218a 100644 --- a/test/src/main/java/org/apache/accumulo/test/shell/ShellIT_SimpleSuite.java +++ b/test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java @@ -53,7 +53,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; @Tag(MINI_CLUSTER_ONLY) -public class ShellIT_SimpleSuite extends SharedMiniClusterBase { +public class ShellIT extends SharedMiniClusterBase { @Override protected Duration defaultTimeout() { @@ -70,7 +70,7 @@ public class ShellIT_SimpleSuite extends SharedMiniClusterBase { SharedMiniClusterBase.stopMiniCluster(); } - private static final Logger log = LoggerFactory.getLogger(ShellIT_SimpleSuite.class); + private static final Logger log = LoggerFactory.getLogger(ShellIT.class); public static class TestOutputStream extends OutputStream { StringBuilder sb = new StringBuilder();