From a6c0e4d2028966c73525de020d4e500f272dfadf Mon Sep 17 00:00:00 2001 From: nulltoken Date: Tue, 11 Oct 2011 14:42:48 +0200 Subject: [PATCH] Fix minor indentation issues --- tests/t09-tree.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/tests/t09-tree.c b/tests/t09-tree.c index 543aea8d4..3af06ea67 100644 --- a/tests/t09-tree.c +++ b/tests/t09-tree.c @@ -187,22 +187,22 @@ BEGIN_TEST(write3, "write a hierarchical tree from a memory") must_pass(git_treebuilder_write(&subtree_id,repo,builder)); git_treebuilder_free(builder); - // create parent tree - must_pass(git_tree_lookup(&tree, repo, &id)); + // create parent tree + must_pass(git_tree_lookup(&tree, repo, &id)); must_pass(git_treebuilder_create(&builder, tree)); must_pass(git_treebuilder_insert(NULL,builder,"new",&subtree_id,040000)); must_pass(git_treebuilder_write(&id_hiearar,repo,builder)); git_treebuilder_free(builder); git_tree_close(tree); - must_be_true(git_oid_cmp(&id_hiearar, &id3) == 0); + must_be_true(git_oid_cmp(&id_hiearar, &id3) == 0); - // check data is correct - must_pass(git_tree_lookup(&tree, repo, &id_hiearar)); - must_be_true(2 == git_tree_entrycount(tree)); + // check data is correct + must_pass(git_tree_lookup(&tree, repo, &id_hiearar)); + must_be_true(2 == git_tree_entrycount(tree)); git_tree_close(tree); - close_temp_repo(repo); + close_temp_repo(repo); END_TEST @@ -215,4 +215,3 @@ BEGIN_SUITE(tree) ADD_TEST(write2); ADD_TEST(write3); END_SUITE -