Skip to content

Commit 2d0174e

Browse files
peffgitster
authored andcommitted
t7700: drop explicit --no-pack-kept-objects from .keep test
We want to make sure that the default behavior of git-repack, without any options, continues to treat .keep files as it always has. Adding an explicit --no-pack-kept-objects, as ee34a2b did, is a much less interesting test, and prevented us from noticing the bug fixed by 64d3dc9 (repack: do not accidentally pack kept objects by default, 2014-06-10). Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 71d76cb commit 2d0174e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t7700-repack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test_expect_success 'objects in packs marked .keep are not repacked' '
2121
objsha1=$(git verify-pack -v pack-$packsha1.idx | head -n 1 |
2222
sed -e "s/^\([0-9a-f]\{40\}\).*/\1/") &&
2323
mv pack-* .git/objects/pack/ &&
24-
git repack --no-pack-kept-objects -A -d -l &&
24+
git repack -A -d -l &&
2525
git prune-packed &&
2626
for p in .git/objects/pack/*.idx; do
2727
idx=$(basename $p)

0 commit comments

Comments
 (0)