cmocka: Add a missing space in tests output.
authorAndreas Schneider <asn@cryptomilk.org>
Tue, 16 Oct 2012 14:38:49 +0000 (16:38 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Tue, 16 Oct 2012 14:38:49 +0000 (16:38 +0200)
src/cmocka.c

index 3db8a3f..c60e95a 100755 (executable)
@@ -1784,7 +1784,7 @@ int _run_tests(const UnitTest * const tests, const size_t number_of_tests) {
         }
     }
 
-    print_message("[==========] %"PRIdS "test(s) run.\n", tests_executed);
+    print_message("[==========] %"PRIdS " test(s) run.\n", tests_executed);
     print_error("[  PASSED  ] %"PRIdS " test(s).\n", tests_executed - total_failed);
 
     if (total_failed) {