diff options
author | Jeff King <peff@peff.net> | 2018-04-13 15:18:29 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-04-16 14:15:02 +0900 |
commit | cf98a52ba4d8176a3ec73c72d296275999ecb52d (patch) | |
tree | d57948bd234629fb5438ca6688e9fc055d7c2f07 | |
parent | Git 2.17 (diff) | |
download | tgif-cf98a52ba4d8176a3ec73c72d296275999ecb52d.tar.xz |
t7004: fix mistaken tag name
We have a series of tests which create signed tags with
various properties, but one test accidentally verifies a tag
from much earlier in the series.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Ben Toews <mastahyeti@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t7004-tag.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh index 2aac77af70..ee093b393d 100755 --- a/t/t7004-tag.sh +++ b/t/t7004-tag.sh @@ -1056,7 +1056,7 @@ test_expect_success GPG \ git tag -s -F sigblanknonlfile blanknonlfile-signed-tag && get_tag_msg blanknonlfile-signed-tag >actual && test_cmp expect actual && - git tag -v signed-tag + git tag -v blanknonlfile-signed-tag ' # messages with commented lines for signed tags: |