Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'ak/t4151-ls-files-could-be-empty' into maint
author
Junio C Hamano
<gitster@pobox.com>
Thu, 26 May 2016 20:17:17 +0000
(13:17 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 26 May 2016 20:17:17 +0000
(13:17 -0700)
Test fix.
* ak/t4151-ls-files-could-be-empty:
t4151: make sure argument to 'test -z' is given
t/t4151-am-abort.sh
patch
|
blob
|
history
raw
(from parent 1:
6de6aba
)
diff --git
a/t/t4151-am-abort.sh
b/t/t4151-am-abort.sh
index ea5ace99a14f7f31b63dfd9cf25123725a525519..9473c2779ef0df109f6943a949583676ea5ceabf 100755
(executable)
--- a/
t/t4151-am-abort.sh
+++ b/
t/t4151-am-abort.sh
@@
-82,7
+82,7
@@
test_expect_success 'am -3 --abort removes otherfile-4' '
test 4 = "$(cat otherfile-4)" &&
git am --abort &&
test_cmp_rev initial HEAD &&
- test -z
$(git ls-files -u)
&&
+ test -z
"$(git ls-files -u)"
&&
test_path_is_missing otherfile-4
'