提交 21b56b92 编写于 作者: J Junio C Hamano

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
......@@ -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
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册