http://forge.ocamlcore.org/tracker/index.php?func=detail&aid=1422&group_id=162&atid=732 diff -r -u ounit.2.0.0.orig/src/oUnitLoggerHTML.ml ounit.2.0.0/src/oUnitLoggerHTML.ml --- ounit.2.0.0.orig/src/oUnitLoggerHTML.ml 2013-09-30 02:22:18.000000000 +0200 +++ ounit.2.0.0/src/oUnitLoggerHTML.ml 2014-09-03 00:29:39.000000000 +0200 @@ -198,22 +198,22 @@

%s (%s)

Started at: %s
-
Test duration: %0.3fs
+
Test duration: %.3fs
\n" class_result (html_escaper test_data.test_name) (html_escaper text_result) (date_iso8601 test_data.timestamp_start) (test_data.timestamp_end -. test_data.timestamp_start); - printf "%0.3fsStart
\n" + printf "%.3fsStart
\n" 0.0; List.iter (fun (tmstp, svrt, str) -> printf "\ - %0.3fs%s
\n" + %.3fs%s
\n" (class_severity_opt svrt) tmstp (html_escaper str)) test_data.log_entries; - printf "%0.3fsEnd
\n" + printf "%.3fsEnd
\n" (test_data.timestamp_end -. test_data.timestamp_start); printf "
"; begin