Fix minor indentation issues
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
diff --git a/tests/t09-tree.c b/tests/t09-tree.c
index 543aea8..3af06ea 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
-