Skip to content

Commit 51ddc12

Browse files
committed
Merge branch 'aw/t9811-modernize'
Test updates. * aw/t9811-modernize: t9811: fix misconversion of tests t9811: be more precise to check importing of tags
2 parents cbe2267 + ee40e26 commit 51ddc12

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

t/t9811-git-p4-label-import.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,8 @@ test_expect_success 'two labels on the same changelist' '
9595
cd "$git" &&
9696
git p4 sync --import-labels &&
9797
98-
git tag | grep TAG_F1 &&
99-
git tag | grep -q TAG_F1_1 &&
100-
git tag | grep -q TAG_F1_2 &&
98+
git show-ref --verify refs/tags/TAG_F1_1 &&
99+
git show-ref --verify refs/tags/TAG_F1_2 &&
101100
102101
cd main &&
103102
@@ -207,8 +206,7 @@ test_expect_success 'use git config to enable import/export of tags' '
207206
git tag CFG_A_GIT_TAG &&
208207
git p4 rebase --verbose &&
209208
git p4 submit --verbose &&
210-
git tag &&
211-
git tag | grep TAG_F1_1
209+
git show-ref --verify refs/tags/TAG_F1_1
212210
) &&
213211
(
214212
cd "$cli" &&

0 commit comments

Comments
 (0)