diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-05-13 14:05:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-05-13 14:05:53 -0700 |
commit | 21b56b92590e68fde07abbba7676c91cd883031b (patch) | |
tree | 2a0d5fa7bbaaca7151f1e6c55ad341ba2b345b75 | |
parent | Merge branch 'cn/bom-in-gitignore' into maint (diff) | |
parent | test-lib-functions.sh: fix the second argument to some helper functions (diff) | |
download | tgif-21b56b92590e68fde07abbba7676c91cd883031b.tar.xz |
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
-rw-r--r-- | t/test-lib-functions.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index 0698ce7908..8f8858a5f0 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 } |