Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'ep/fix-test-lib-functions-report' into maint
author
Junio C Hamano
<gitster@pobox.com>
Wed, 13 May 2015 21:05:52 +0000
(14:05 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 13 May 2015 21:05:53 +0000
(14:05 -0700)
* ep/fix-test-lib-functions-report:
test-lib-functions.sh: fix the second argument to some helper functions
t/test-lib-functions.sh
patch
|
blob
|
history
raw
(from parent 1:
8a1d897
)
diff --git
a/t/test-lib-functions.sh
b/t/test-lib-functions.sh
index 0698ce7908cb958c6e94a8cfa11c1019de692710..8f8858a5f0a4f7a705960cef5b5558064a86ea28 100644
(file)
--- a/
t/test-lib-functions.sh
+++ b/
t/test-lib-functions.sh
@@
-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
}