t5319: drop useless --buffer from cat-file
The cat-file --buffer option is the default already when using --batch-all-objects. It doesn't hurt to specify it, but it's nice for the test scripts to model good usage. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Jeff King committed
Apr 5, 2019 at 14:05 UTC
5670ad98a8c0b5d7cabb5931225c759ec977600f
1 file changed
+2
-2
t/t5319-multi-pack-index.sh
+2
-2
@@ -104,8 +104,8 @@ compare_results_with_midx () {
104
midx_git_two_modes "rev-list --objects --all" &&
105
midx_git_two_modes "log --raw" &&
106
midx_git_two_modes "count-objects --verbose" &&
107
- midx_git_two_modes "cat-file --batch-all-objects --buffer --batch-check" &&
108
- midx_git_two_modes "cat-file --batch-all-objects --buffer --batch-check --unordered" sorted
107
+ midx_git_two_modes "cat-file --batch-all-objects --batch-check" &&
108
+ midx_git_two_modes "cat-file --batch-all-objects --batch-check --unordered" sorted
109
'
110
}
111