Browse Source

test-lib-functions.sh: fix the second argument to some helper functions

The second argument to test_path_is_file and test_path_is_dir
must be $2 and not $*, which instead would repeat the file
name in the error message.

Signed-off-by: Elia Pinto <gitter.spiros@gmail.com>
Reviewed-by: Matthieu Moy <Matthieu.Moy@grenoble-inp.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Elia Pinto 10 years ago committed by Junio C Hamano
parent
commit
de248e92c1
  1. 4
      t/test-lib-functions.sh

4
t/test-lib-functions.sh

@ -383,7 +383,7 @@ test_external_without_stderr () { @@ -383,7 +383,7 @@ test_external_without_stderr () {
test_path_is_file () {
if ! [ -f "$1" ]
then
echo "File $1 doesn't exist. $*"
echo "File $1 doesn't exist. $2"
false
fi
}
@ -391,7 +391,7 @@ test_path_is_file () { @@ -391,7 +391,7 @@ test_path_is_file () {
test_path_is_dir () {
if ! [ -d "$1" ]
then
echo "Directory $1 doesn't exist. $*"
echo "Directory $1 doesn't exist. $2"
false
fi
}

Loading…
Cancel
Save