From b5008ce74eb6c054b40edb611e0203e52ae1095c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 23 Mar 2021 23:45:32 +0200 Subject: [PATCH] test(init): remove misleading detect from parent shell case arg 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 bb57dc3e..c9fb0a28 100755 --- a/test/init.bats +++ b/test/init.bats @@ -39,7 +39,7 @@ eval "\$(pyenv-init -)" echo \$PYENV_SHELL OUT chmod +x myscript.sh - run ./myscript.sh /bin/zsh + run ./myscript.sh assert_success "sh" }