diff options
author | Jeff King <peff@peff.net> | 2016-09-05 17:52:14 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-07 11:45:27 -0700 |
commit | 2076353f473aa3cbcbd2623f1765432fa275acec (patch) | |
tree | 556f14c06f3a994fe3e4e01914240c57063c56fb | |
parent | 1962d9fbe3feeb888053d0c648e39b82870c4ef3 (diff) | |
download | git-2076353f473aa3cbcbd2623f1765432fa275acec.tar.gz |
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>
-rwxr-xr-x | t/t5305-include-tag.sh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/t/t5305-include-tag.sh b/t/t5305-include-tag.sh index 60184048c5..787fc831e3 100755 --- a/t/t5305-include-tag.sh +++ b/t/t5305-include-tag.sh @@ -37,7 +37,6 @@ test_expect_success 'unpack objects' ' GIT_DIR=clone.git && export GIT_DIR && git init && - git unpack-objects -n <test-1-${packname_1}.pack && git unpack-objects <test-1-${packname_1}.pack ) ' @@ -64,7 +63,6 @@ test_expect_success 'unpack objects' ' GIT_DIR=clone.git && export GIT_DIR && git init && - git unpack-objects -n <test-2-${packname_1}.pack && git unpack-objects <test-2-${packname_1}.pack ) ' |