aboutsummaryrefslogtreecommitdiff
path: root/src/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test.c')
-rw-r--r--src/test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test.c b/src/test.c
index 974ed8f..07dbb7d 100644
--- a/src/test.c
+++ b/src/test.c
@@ -10,7 +10,7 @@
void run_test ()
{
//Space for temporary tests
-
+
//tree_balanced_insert(NULL, NULL, NULL, 15 );
//Normal tests
test_tree();
@@ -24,10 +24,10 @@ int test_tree ()
printf("\n-> test_tree()\n======\n\n");
struct tree_node* root = NULL;
-
+
tree_insert ( &root, "eins", "Test eins" );
tree_insert ( &root, "zwei", "Test zwei" );
-
+
printf("After Insert\n");
printf("%s\n", tree_get(&root, "zwei"));