From 6b842a7670bcf69c8243d54644aa5db5d8aba893 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 23 Mar 2021 23:41:55 +0200 Subject: [PATCH] test(init): remove misleading arg in detect from parent shell case The generated script does not take/use any arguments, so passing /bin/zsh to it serves only to cause confusion. --- test/init.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/init.bats b/test/init.bats index d780cc5..d3548f0 100755 --- a/test/init.bats +++ b/test/init.bats @@ -39,7 +39,7 @@ eval "\$(rbenv-init -)" echo \$RBENV_SHELL OUT chmod +x myscript.sh - run ./myscript.sh /bin/zsh + run ./myscript.sh assert_success "sh" }