diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:02:56 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:02:56 +0900 |
commit | 1eb539a9b3ed2af95992bf9460bd77b4bc5fea23 (patch) | |
tree | 612c47006bf82c76850129f7e17ffe504a0f9711 /t | |
parent | ea8bf0009598ffa3305003d67514eafa49e14a25 (diff) | |
parent | dff2813391d720e1739d1d83a84ba38b1d4ad615 (diff) | |
download | git-1eb539a9b3ed2af95992bf9460bd77b4bc5fea23.tar.gz git-1eb539a9b3ed2af95992bf9460bd77b4bc5fea23.tar.xz |
Merge branch 'ab/ref-filter-no-contains' into maint
A test fix.
* ab/ref-filter-no-contains:
tests: don't give unportable ">" to "test" built-in, use -gt
Diffstat (limited to 't')
-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 dd5ba450e..dbcd6f623 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' ' |