Merge branch 'ep/fix-test-lib-functions-report' into maint

* ep/fix-test-lib-functions-report:
  test-lib-functions.sh: fix the second argument to some helper functions
This commit is contained in:
Junio C Hamano 2015-05-13 14:05:52 -07:00
commit 21b56b9259

View File

@ -478,7 +478,7 @@ test_external_without_stderr () {
test_path_is_file () { test_path_is_file () {
if ! test -f "$1" if ! test -f "$1"
then then
echo "File $1 doesn't exist. $*" echo "File $1 doesn't exist. $2"
false false
fi fi
} }
@ -486,7 +486,7 @@ test_path_is_file () {
test_path_is_dir () { test_path_is_dir () {
if ! test -d "$1" if ! test -d "$1"
then then
echo "Directory $1 doesn't exist. $*" echo "Directory $1 doesn't exist. $2"
false false
fi fi
} }