summaryrefslogtreecommitdiff
path: root/t/t3903-stash.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-09-02 20:18:39 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-09-02 20:18:39 (GMT)
commit57c081046c2885393858f31fc0e47d9c7545d051 (patch)
tree720a765c2d4d73faed8972b8c66228f123dcf63b /t/t3903-stash.sh
parent8e969454e1588e506df20f552aa8622b6517ea20 (diff)
parent1ae96444104c2bd9c653658fef79ef543559ad27 (diff)
downloadgit-57c081046c2885393858f31fc0e47d9c7545d051.zip
git-57c081046c2885393858f31fc0e47d9c7545d051.tar.gz
git-57c081046c2885393858f31fc0e47d9c7545d051.tar.bz2
Merge branch 'tr/maint-t3903-misquoted-command'
* tr/maint-t3903-misquoted-command: t3903: fix misquoted rev-parse invocation
Diffstat (limited to 't/t3903-stash.sh')
-rwxr-xr-xt/t3903-stash.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh
index 7197aae..fcdb182 100755
--- a/t/t3903-stash.sh
+++ b/t/t3903-stash.sh
@@ -542,7 +542,7 @@ test_expect_success 'ref with non-existent reflog' '
echo bar6 > file2 &&
git add file2 &&
git stash &&
- ! "git rev-parse --quiet --verify does-not-exist" &&
+ test_must_fail git rev-parse --quiet --verify does-not-exist &&
test_must_fail git stash drop does-not-exist &&
test_must_fail git stash drop does-not-exist@{0} &&
test_must_fail git stash pop does-not-exist &&