diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-09-02 13:18:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-09-02 13:18:39 -0700 |
commit | 57c081046c2885393858f31fc0e47d9c7545d051 (patch) | |
tree | 720a765c2d4d73faed8972b8c66228f123dcf63b /t/t3903-stash.sh | |
parent | 8e969454e1588e506df20f552aa8622b6517ea20 (diff) | |
parent | 1ae96444104c2bd9c653658fef79ef543559ad27 (diff) | |
download | git-57c081046c2885393858f31fc0e47d9c7545d051.tar.gz |
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-x | t/t3903-stash.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh index 7197aae1ed..fcdb18217a 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 && |