Skip to content

Commit 64c9e02

Browse files
committed
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
2 parents 2e1dfd6 + de248e9 commit 64c9e02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

t/test-lib-functions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,15 +478,15 @@ test_external_without_stderr () {
478478
test_path_is_file () {
479479
if ! test -f "$1"
480480
then
481-
echo "File $1 doesn't exist. $*"
481+
echo "File $1 doesn't exist. $2"
482482
false
483483
fi
484484
}
485485

486486
test_path_is_dir () {
487487
if ! test -d "$1"
488488
then
489-
echo "Directory $1 doesn't exist. $*"
489+
echo "Directory $1 doesn't exist. $2"
490490
false
491491
fi
492492
}

0 commit comments

Comments
 (0)