diff options
author | Denton Liu <liu.denton@gmail.com> | 2019-12-20 19:15:54 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-12-20 20:30:44 +0100 |
commit | f511bc02edc8e2729e7babb1b4caa98684d941bc (patch) | |
tree | 5f3be573b3fbfa421490a25fa9c107f5698877cf /t/t1409-avoid-packing-refs.sh | |
parent | t0020: don't use `test_must_fail has_cr` (diff) | |
download | git-f511bc02edc8e2729e7babb1b4caa98684d941bc.tar.xz git-f511bc02edc8e2729e7babb1b4caa98684d941bc.zip |
t0020: use ! check_packed_refs_marked
The test_must_fail function should only be used for git commands since
we should assume that external commands work sanely. Since
check_packed_refs_marked() just wraps a grep invocation, replace
`test_must_fail check_packed_refs_marked` with
`! check_packed_refs_marked`.
Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1409-avoid-packing-refs.sh')
-rwxr-xr-x | t/t1409-avoid-packing-refs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t1409-avoid-packing-refs.sh b/t/t1409-avoid-packing-refs.sh index e5cb8a252d..c46848eb8e 100755 --- a/t/t1409-avoid-packing-refs.sh +++ b/t/t1409-avoid-packing-refs.sh @@ -46,7 +46,7 @@ test_expect_success 'check that marking the packed-refs file works' ' git for-each-ref >actual && test_cmp expected actual && git pack-refs --all && - test_must_fail check_packed_refs_marked && + ! check_packed_refs_marked && git for-each-ref >actual2 && test_cmp expected actual2 ' @@ -80,7 +80,7 @@ test_expect_success 'touch packed-refs on delete of packed' ' git pack-refs --all && mark_packed_refs && git update-ref -d refs/heads/packed-delete && - test_must_fail check_packed_refs_marked + ! check_packed_refs_marked ' test_expect_success 'leave packed-refs untouched on update of loose' ' |