diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2017-03-23 13:05:20 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-23 10:02:56 -0700 |
commit | 682b29f90d7e049c24f3821d49599dceb4aeb758 (patch) | |
tree | a4358b86c5ba6f47b862660cd42c2980a47fe000 | |
parent | tag: remove a TODO item from the test suite (diff) | |
download | tgif-682b29f90d7e049c24f3821d49599dceb4aeb758.tar.xz |
tag tests: fix a typo in a test description
Change "suceed" to "succeed" in a test description. The typo has been
here since the code was originally added in commit ef5a6fb597 ("Add
test-script for git-tag", 2007-06-28).
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@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 830eff948e..63ee2cf727 100755 --- a/t/t7004-tag.sh +++ b/t/t7004-tag.sh @@ -136,7 +136,7 @@ test_expect_success \ 'test $(git tag -l mytag) = mytag' test_expect_success \ - 'listing tags using a non-matching pattern should suceed' \ + 'listing tags using a non-matching pattern should succeed' \ 'git tag -l xxx' test_expect_success \ |