summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9c46c05)
raw | patch | inline | side by side (parent: 9c46c05)
author | Jon Seymour <jon.seymour@gmail.com> | |
Tue, 31 Aug 2010 14:49:19 +0000 (00:49 +1000) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 31 Aug 2010 16:49:23 +0000 (09:49 -0700) |
Some tests in maint-reflog-beyond-horizon are calling test_must_fail
in such a way that the arguments to test_must_fail do, indeed, fail
but not in the manner expected by the test.
This patch removes the unnecessary and unhelpful double quotes.
Signed-off-by: Jon Seymour <jon.seymour@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
in such a way that the arguments to test_must_fail do, indeed, fail
but not in the manner expected by the test.
This patch removes the unnecessary and unhelpful double quotes.
Signed-off-by: Jon Seymour <jon.seymour@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t1503-rev-parse-verify.sh | patch | blob | history |
index 61092f70f1c4d7c917b1fa235cf38dca597ac88c..100f857b168b1d8b88ea1a1e7e31ba42a2beee6c 100755 (executable)
git rev-parse --verify master@{0} &&
git rev-parse --verify master@{1} &&
git rev-parse --verify master@{$Nm1} &&
- test_must_fail "git rev-parse --verify master@{$N}" &&
- test_must_fail "git rev-parse --verify master@{$Np1}"
+ test_must_fail git rev-parse --verify master@{$N} &&
+ test_must_fail git rev-parse --verify master@{$Np1}
'
test_done