diff options
author | Brandon Casey <casey@nrlssc.navy.mil> | 2009-04-24 18:18:53 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-04-25 08:54:18 -0700 |
commit | 1ef2d5a640d14e924751adb500224a36d87f9771 (patch) | |
tree | fba153cab66b6587c06905baf1c17e1eeb6b6495 /t | |
parent | 84eeb687de7a6c7c42af3fb51b176e0f412a979e (diff) | |
download | git-1ef2d5a640d14e924751adb500224a36d87f9771.tar.gz |
t7700-repack: repack -a now works properly, expect success from test
Since the recent rework of the object listing mechanism of
pack-objects/rev-list, git-repack now properly packs objects from alternate
repositories even when the local repository contains packs.
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t7700-repack.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7700-repack.sh b/t/t7700-repack.sh index 6b29bff782..87c9b0e121 100755 --- a/t/t7700-repack.sh +++ b/t/t7700-repack.sh @@ -69,7 +69,7 @@ test_expect_success 'packed obs in alt ODB are repacked even when local repo is done ' -test_expect_failure 'packed obs in alt ODB are repacked when local repo has packs' ' +test_expect_success 'packed obs in alt ODB are repacked when local repo has packs' ' rm -f .git/objects/pack/* && echo new_content >> file1 && git add file1 && |