Signed-off-by: Ramkumar Ramachandra <artagnon@xxxxxxxxx> --- t/t1007-hash-object.sh | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/t/t1007-hash-object.sh b/t/t1007-hash-object.sh index 6d52b82..316c60a 100755 --- a/t/t1007-hash-object.sh +++ b/t/t1007-hash-object.sh @@ -154,13 +154,13 @@ test_expect_success 'check that --no-filters option works with --stdin-paths' ' pop_repo for args in "-w --stdin" "--stdin -w"; do - push_repo + push_repo && test_expect_success "hash from stdin and write to database ($args)" ' test $example_sha1 = $(git hash-object $args < example) - ' + ' && - test_blob_exists $example_sha1 + test_blob_exists $example_sha1 && pop_repo done @@ -176,20 +176,20 @@ test_expect_success "hash two files with names on stdin" ' ' for args in "-w --stdin-paths" "--stdin-paths -w"; do - push_repo + push_repo && test_expect_success "hash two files with names on stdin and write to database ($args)" ' test "$sha1s" = "$(echo_without_newline "$filenames" | git hash-object $args)" - ' + ' && - test_blob_exists $hello_sha1 - test_blob_exists $example_sha1 + test_blob_exists $hello_sha1 && + test_blob_exists $example_sha1 && pop_repo done test_expect_success 'corrupt tree' ' - echo abc >malformed-tree + echo abc >malformed-tree && test_must_fail git hash-object -t tree malformed-tree ' -- 1.7.7.3 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html