summaryrefslogtreecommitdiff
path: root/t/t1503-rev-parse-verify.sh
diff options
context:
space:
mode:
authorJon Seymour <jon.seymour@gmail.com>2010-09-01 00:49:19 +1000
committerJunio C Hamano <gitster@pobox.com>2010-08-31 09:49:23 -0700
commitba9eab7bfdcb83ad67f4714507599f378a91b17a (patch)
tree4011ceab9110aa661531add8daed56e15c9d7a95 /t/t1503-rev-parse-verify.sh
parent9c46c054ae426cf1d064f651615ce699d038d276 (diff)
downloadgit-ba9eab7bfdcb83ad67f4714507599f378a91b17a.tar.gz
t1503: fix broken test_must_fail calls
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>
Diffstat (limited to 't/t1503-rev-parse-verify.sh')
-rwxr-xr-xt/t1503-rev-parse-verify.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t1503-rev-parse-verify.sh b/t/t1503-rev-parse-verify.sh
index 61092f70f1..100f857b16 100755
--- a/t/t1503-rev-parse-verify.sh
+++ b/t/t1503-rev-parse-verify.sh
@@ -111,8 +111,8 @@ test_expect_success 'master@{n} for various n' '
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