diff options
| author | John Cai <johncai86@gmail.com> | 2023-05-20 16:13:54 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-05-23 12:54:29 +0900 |
| commit | 3a3b98be91b11e50294593b3c134948c78f7250e (patch) | |
| tree | 692a33fde8504c117c111ddcf64573c923099e1a | |
| parent | bd48dfad697e22f4b6ba4be46ea534d9c32f9e20 (diff) | |
t7700-repack: modernize test format
Some tests still use the old format with four spaces indentation.
Standardize the tests to the new format with tab indentation.
Signed-off-by: John Cai <johncai86@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rwxr-xr-x | t/t7700-repack.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/t/t7700-repack.sh b/t/t7700-repack.sh index faa739eeb9..3f930fa476 100755 --- a/t/t7700-repack.sh +++ b/t/t7700-repack.sh @@ -460,10 +460,10 @@ test_expect_success '--write-midx -b packs non-kept objects' ' ' test_expect_success '--write-midx removes stale pack-based bitmaps' ' - rm -fr repo && - git init repo && - test_when_finished "rm -fr repo" && - ( + rm -fr repo && + git init repo && + test_when_finished "rm -fr repo" && + ( cd repo && test_commit base && GIT_TEST_MULTI_PACK_INDEX=0 git repack -Ab && @@ -477,7 +477,7 @@ test_expect_success '--write-midx removes stale pack-based bitmaps' ' test_path_is_file $midx && test_path_is_file $midx-$(midx_checksum $objdir).bitmap && test_path_is_missing $pack_bitmap - ) + ) ' test_expect_success '--write-midx with --pack-kept-objects' ' |
