Merge branch 'ma/t7004'

Test fix.

* ma/t7004:
  t7004: check existence of correct tag
maint
Junio C Hamano 2019-12-01 09:04:41 -08:00
commit 4775e02a5c
1 changed files with 3 additions and 3 deletions

View File

@ -227,10 +227,10 @@ test_expect_success \
test_expect_success \
'trying to delete two tags, existing and not, should fail in the 2nd' '
tag_exists mytag &&
! tag_exists myhead &&
test_must_fail git tag -d mytag anothertag &&
! tag_exists nonexistingtag &&
test_must_fail git tag -d mytag nonexistingtag &&
! tag_exists mytag &&
! tag_exists myhead
! tag_exists nonexistingtag
'

test_expect_success 'trying to delete an already deleted tag should fail' \