Skip to content

Commit

Permalink
Merge branch 'ep/fix-test-lib-functions-report'
Browse files Browse the repository at this point in the history
* ep/fix-test-lib-functions-report:
  test-lib-functions.sh: fix the second argument to some helper functions
  • Loading branch information
Junio C Hamano committed May 6, 2015
2 parents 2e1dfd6 + de248e9 commit 64c9e02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/test-lib-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -478,15 +478,15 @@ 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
}

test_path_is_dir () {
if ! test -d "$1"
then
echo "Directory $1 doesn't exist. $*"
echo "Directory $1 doesn't exist. $2"
false
fi
}
Expand Down

0 comments on commit 64c9e02

Please sign in to comment.