From 97aab882e73573b37283dbd39e980fc13aa50ae0 Mon Sep 17 00:00:00 2001 From: Trevor Brown Date: Fri, 16 Oct 2020 10:42:09 -0400 Subject: [PATCH] Fix unbound variable in shim env test --- test/shim_env_command.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/shim_env_command.bats b/test/shim_env_command.bats index 0d70b69a..5e7fbcae 100644 --- a/test/shim_env_command.bats +++ b/test/shim_env_command.bats @@ -80,5 +80,5 @@ teardown() { # Should not contain duplicate colon run grep '::' <(echo "$path_line") - [ "$duplicate_colon" == "" ] + [ "$output" == "" ] }