]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/test-lib-functions.sh
test-lib-functions.sh: fix the second argument to some helper functions
[thirdparty/git.git] / t / test-lib-functions.sh
index 7b3b4bef3019d7fd81648073419506ac017bd2e5..e8981b116fee2028d54f3ae375eb395f4e1d7272 100644 (file)
@@ -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
 }