summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cc663d1)
raw | patch | inline | side by side (parent: cc663d1)
author | Thomas Rast <trast@student.ethz.ch> | |
Mon, 29 Aug 2011 20:10:47 +0000 (22:10 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 29 Aug 2011 22:27:04 +0000 (15:27 -0700) |
The test wrote something along the lines of 0001-foo.patch to output,
which of course never contained a signature. Luckily the tested
behaviour is actually present.
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
which of course never contained a signature. Luckily the tested
behaviour is actually present.
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4014-format-patch.sh | patch | blob | history |
index b4d42072461d93146a8d9bbea86c73601885f71e..a45d4fbd03e76f6c5283623cfe4d08cb02f5ea20 100755 (executable)
--- a/t/t4014-format-patch.sh
+++ b/t/t4014-format-patch.sh
! grep "^-- \$" output
'
-test_expect_failure 'format-patch --signature="" supresses signatures' '
- git format-patch --signature="" -1 >output &&
+test_expect_success 'format-patch --signature="" supresses signatures' '
+ git format-patch --stdout --signature="" -1 >output &&
check_patch output &&
! grep "^-- \$" output
'