diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-03-27 13:35:18 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-03-27 13:35:18 -0700 |
commit | 319a36a5c2da8dd07993caac43b7820bff3b0d37 (patch) | |
tree | dcf79cf682e76fca476ff7bea7024efda338807e /t | |
parent | test_must_fail: 129 is a valid error code from usage() (diff) | |
parent | Update draft release notes for 1.5.4.5 (diff) | |
download | tgif-319a36a5c2da8dd07993caac43b7820bff3b0d37.tar.xz |
Merge branch 'maint'
* maint:
Update draft release notes for 1.5.4.5
Documentation: clarify use of .git{ignore,attributes} versus .git/info/*
t/t3800-mktag.sh: use test_must_fail rather than '!'
Conflicts:
t/t3800-mktag.sh
Diffstat (limited to 't')
-rwxr-xr-x | t/t3800-mktag.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3800-mktag.sh b/t/t3800-mktag.sh index 278075823b..bdc6e132ca 100755 --- a/t/t3800-mktag.sh +++ b/t/t3800-mktag.sh @@ -14,7 +14,7 @@ test_description='git-mktag: tag object verify test' check_verify_failure () { expect="$2" test_expect_success "$1" ' - ( ! git-mktag <tag.sig 2>message ) && + ( test_must_fail git-mktag <tag.sig 2>message ) && grep "$expect" message ' } |