Fix several typos

Signed-off-by: Roland Stigge <stigge@antcom.de>

--- autounit-0.20.1.orig/c-unit/TEST/test-suite.c	2006-07-13 22:50:06.000000000 +0200
+++ autounit-0.20.1/c-unit/TEST/test-suite.c	2006-09-06 17:26:58.000000000 +0200
@@ -100,9 +100,9 @@
 	    "suite_useconds_elapsed not 0 on virgin struct");
   loc_assert(testname, x_tc->tests == NULL, "tests not NULL on virgin struct");
   loc_assert(testname, x_tc->setup_fp == cus_setup_suite,
-	    "setup not NULL on virgin struct");
+	    "setup not set correctly on virgin struct");
   loc_assert(testname, x_tc->teardown_fp == cus_teardown_suite,
-	    "teardown not NULL on virgin struct");
+	    "teardown not set correctly on virgin struct");
 
   au_delete_suite(x_tc);
   return TRUE;
@@ -145,10 +145,10 @@
 	    "length of tests list is not 1 after add");
   au_remove_test(b_tc,b_t);
   loc_assert(testname, g_slist_length(b_tc->tests)==0,
-	    "length of tests list is not 1 after one deletion");
+	    "length of tests list is not 0 after one deletion");
   au_remove_test(b_tc,b_t);
   loc_assert(testname, g_slist_length(b_tc->tests)==0,
-	    "length of tests list is not 1 after one deletion");
+	    "length of tests list is not 0 after one deletion");
   au_delete_suite(b_tc);
   return TRUE;
 }
@@ -166,10 +166,10 @@
 	    "length of tests list is not 1 after add");
   au_remove_test(b_tc,b_t);
   loc_assert(testname, g_slist_length(b_tc->tests)==0,
-	    "length of tests list is not 1 after one deletion");
+	    "length of tests list is not 0 after one deletion");
   au_remove_test(b_tc,b_t);
   loc_assert(testname, g_slist_length(b_tc->tests)==0,
-	    "length of tests list is not 1 after one deletion");
+	    "length of tests list is not 0 after one deletion");
   au_delete_test(b_t);
   au_delete_suite(b_tc);
   return TRUE;
