Some tests in detached-stash 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>
@ -435,7 +435,7 @@ test_expect_success 'stash drop - fail early if specified stash is not a stash r
@@ -435,7 +435,7 @@ test_expect_success 'stash drop - fail early if specified stash is not a stash r
git stash &&
echo bar > file &&
git stash &&
test_must_fail "git stash drop $(git rev-parse stash@{0})" &&
test_must_fail git stash drop $(git rev-parse stash@{0}) &&
git stash pop &&
test bar = "$(cat file)" &&
git reset --hard HEAD
@ -449,7 +449,7 @@ test_expect_success 'stash pop - fail early if specified stash is not a stash re
@@ -449,7 +449,7 @@ test_expect_success 'stash pop - fail early if specified stash is not a stash re
git stash &&
echo bar > file &&
git stash &&
test_must_fail "git stash pop $(git rev-parse stash@{0})" &&
test_must_fail git stash pop $(git rev-parse stash@{0}) &&
git stash pop &&
test bar = "$(cat file)" &&
git reset --hard HEAD
@ -462,31 +462,31 @@ test_expect_success 'ref with non-existant reflog' '
@@ -462,31 +462,31 @@ test_expect_success 'ref with non-existant reflog' '