diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-08-22 10:29:02 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-08-22 10:29:02 -0700 |
commit | 6cb3822cfb34487b2e630f8fe0542c4e0dd8b2f2 (patch) | |
tree | 301f244f2ca79cb00b2f5d0fb6cc0c0f332de26c /t/t7004-tag.sh | |
parent | Merge branch 'bw/clone-recursive-quiet' (diff) | |
parent | tests: don't give unportable ">" to "test" built-in, use -gt (diff) | |
download | tgif-6cb3822cfb34487b2e630f8fe0542c4e0dd8b2f2.tar.xz |
Merge branch 'ab/ref-filter-no-contains'
A test fix.
* ab/ref-filter-no-contains:
tests: don't give unportable ">" to "test" built-in, use -gt
Diffstat (limited to 't/t7004-tag.sh')
-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 dd5ba450ee..dbcd6f623c 100755 --- a/t/t7004-tag.sh +++ b/t/t7004-tag.sh @@ -1888,7 +1888,7 @@ EOF" run_with_limited_stack git tag --contains HEAD >actual && test_cmp expect actual && run_with_limited_stack git tag --no-contains HEAD >actual && - test_line_count ">" 10 actual + test_line_count "-gt" 10 actual ' test_expect_success '--format should list tags as per format given' ' |