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 9ffa42936f fixes shellIT execfile test (#6280)
9ffa42936f is described below

commit 9ffa42936ff6ea334fbc8c00beb4de38183235f0
Author: Keith Turner <[email protected]>
AuthorDate: Tue Mar 31 13:04:50 2026 -0700

    fixes shellIT execfile test (#6280)
---
 test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java 
b/test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java
index 4304d1f97e..307487661b 100644
--- a/test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java
@@ -619,8 +619,8 @@ public class ShellIT extends SharedMiniClusterBase {
   @Test
   public void execFileTest() throws Exception {
     Shell.log.debug("Starting exec file test --------------------------");
-    shell.execute(new String[] {"--config-file", config.toString(), "-u", 
"root", "-p",
-        getRootPassword(), "-f", 
"src/main/resources/org/apache/accumulo/test/shellit.shellit"});
+    shell.execute(new String[] {"--config-file", config, "-f",
+        "src/main/resources/org/apache/accumulo/test/shellit.shellit"});
     assertEquals(0, shell.start());
     assertGoodExit("Unknown command", false);
   }

Reply via email to