Merge branch 'pt/pull-ff-vs-merge-ff'
[gitweb.git] / t / test-lib-functions.sh
index 2c47d8200353bc253cdba925787b0b013d7cfdbc..e8d3c0fdbc76d93ea18f6da1c869fc963e7ca81d 100644 (file)
@@ -487,7 +487,7 @@ test_external_without_stderr () {
 test_path_is_file () {
        if ! test -f "$1"
        then
-               echo "File $1 doesn't exist. $*"
+               echo "File $1 doesn't exist. $2"
                false
        fi
 }
@@ -495,7 +495,7 @@ test_path_is_file () {
 test_path_is_dir () {
        if ! test -d "$1"
        then
-               echo "Directory $1 doesn't exist. $*"
+               echo "Directory $1 doesn't exist. $2"
                false
        fi
 }