diff options
Diffstat (limited to 't')
-rw-r--r-- | t/test-lib-functions.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index 7b3b4bef30..e8981b116f 100644 --- a/t/test-lib-functions.sh +++ b/t/test-lib-functions.sh @@ -383,7 +383,7 @@ test_external_without_stderr () { test_path_is_file () { if ! [ -f "$1" ] then - echo "File $1 doesn't exist. $*" + echo "File $1 doesn't exist. $2" false fi } @@ -391,7 +391,7 @@ test_path_is_file () { test_path_is_dir () { if ! [ -d "$1" ] then - echo "Directory $1 doesn't exist. $*" + echo "Directory $1 doesn't exist. $2" false fi } |