diff options
| author | Junio C Hamano <gitster@pobox.com> | 2026-01-21 08:28:58 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-01-21 08:28:58 -0800 |
| commit | e01178bb1a1cafe06895adc70bcd656a54c7a8c6 (patch) | |
| tree | f5e08336518f75cc71eb6c748d8b3194ee1ab8f2 | |
| parent | dc861c97c3ddecbc1dcee0c310de12ad8af97ef8 (diff) | |
| parent | 220f888d7e2f3d8370a99992785fc0f005913540 (diff) | |
| download | git-e01178bb1a1cafe06895adc70bcd656a54c7a8c6.tar.xz | |
Merge branch 'ps/t1410-cleanup'
Test clean-up.
* ps/t1410-cleanup:
t1410: use test helpers in reflog rewind test
| -rwxr-xr-x | t/t1410-reflog.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/t1410-reflog.sh b/t/t1410-reflog.sh index e30f87a358..ce71f9a30a 100755 --- a/t/t1410-reflog.sh +++ b/t/t1410-reflog.sh @@ -130,10 +130,10 @@ test_expect_success 'pass through -- to sub-command' ' test_expect_success rewind ' test_tick && git reset --hard HEAD~2 && - test -f C && - test -f A/B/E && - ! test -f F && - ! test -f A/G && + test_path_is_file C && + test_path_is_file A/B/E && + test_path_is_missing F && + test_path_is_missing A/G && check_have A B C D E F G H I J K L && |
