summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-05-06 04:00:35 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-05-06 04:00:36 (GMT)
commit64c9e027658124a29aeae47e43fa08aaff760f43 (patch)
tree296e0440eed5fd03c7dac3b1735be2ce22654d6a /t
parent2e1dfd62dca9aecb0ec1bdf3d1927a8da6d95723 (diff)
parentde248e92c18136a733587949b7d95e7b9c98eb0e (diff)
downloadgit-64c9e027658124a29aeae47e43fa08aaff760f43.zip
git-64c9e027658124a29aeae47e43fa08aaff760f43.tar.gz
git-64c9e027658124a29aeae47e43fa08aaff760f43.tar.bz2
Merge branch 'ep/fix-test-lib-functions-report'
* ep/fix-test-lib-functions-report: test-lib-functions.sh: fix the second argument to some helper functions
Diffstat (limited to 't')
-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
}