mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
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
This commit is contained in:
commit
64c9e02765
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue