t5305: drop "dry-run" of unpack-objects
For each test we do a dry-run of unpack-objects, followed by a real run, followed by confirming that it contained the objects we expected. The dry-run is telling us nothing, as any errors it encounters would be found in the real run. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Jeff King committed
Sep 5, 2016 at 17:52 UTC
2076353f473aa3cbcbd2623f1765432fa275acec
1 file changed
-2
t/t5305-include-tag.sh
-2
@@ -37,7 +37,6 @@ test_expect_success 'unpack objects' '
37
GIT_DIR=clone.git &&
38
export GIT_DIR &&
39
git init &&
40
- git unpack-objects -n <test-1-${packname_1}.pack &&
40
git unpack-objects <test-1-${packname_1}.pack
41
)
42
'
@@ -64,7 +63,6 @@ test_expect_success 'unpack objects' '
63
GIT_DIR=clone.git &&
64
export GIT_DIR &&
65
git init &&
67
- git unpack-objects -n <test-2-${packname_1}.pack &&
66
git unpack-objects <test-2-${packname_1}.pack
67
)
68
'