summaryrefslogtreecommitdiff
path: root/t/test-lib-functions.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-05-13 21:05:52 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-05-13 21:05:53 (GMT)
commit21b56b92590e68fde07abbba7676c91cd883031b (patch)
tree2a0d5fa7bbaaca7151f1e6c55ad341ba2b345b75 /t/test-lib-functions.sh
parent8a1d89745d1b60d0d9e8bd91e4e9564673b6c22a (diff)
parentde248e92c18136a733587949b7d95e7b9c98eb0e (diff)
downloadgit-21b56b92590e68fde07abbba7676c91cd883031b.zip
git-21b56b92590e68fde07abbba7676c91cd883031b.tar.gz
git-21b56b92590e68fde07abbba7676c91cd883031b.tar.bz2
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
Diffstat (limited to 't/test-lib-functions.sh')
-rw-r--r--t/test-lib-functions.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh
index 0698ce7..8f8858a 100644
--- a/t/test-lib-functions.sh
+++ b/t/test-lib-functions.sh
@@ -478,7 +478,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
}
@@ -486,7 +486,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
}