Index: /trunk/psLib/test/math/tst_psMinimizeLMM.c
===================================================================
--- /trunk/psLib/test/math/tst_psMinimizeLMM.c	(revision 7181)
+++ /trunk/psLib/test/math/tst_psMinimizeLMM.c	(revision 7182)
@@ -110,7 +110,7 @@
     } else {
         printf("Minimisation took %d iterations\n", min->iter);
-        printf("chi^2 at the minimum is %f\n", min->value);
+        printf("chi^2 at the minimum is %.3g\n", min->value);
         for (long i = 0; i < NUM_PARAMS; i++) {
-            printf("Parameter %ld at the minimum is %f, expected: %f\n", i,
+            printf("Parameter %ld at the minimum is %.3f, expected: %f\n", i,
                    params->data.F32[i], trueParams->data.F32[i]);
             fflush(stdout);
Index: /trunk/psLib/test/math/verified/tst_psMinimizeLMM.stdout
===================================================================
--- /trunk/psLib/test/math/verified/tst_psMinimizeLMM.stdout	(revision 7181)
+++ /trunk/psLib/test/math/verified/tst_psMinimizeLMM.stdout	(revision 7182)
@@ -1,7 +1,7 @@
 Minimisation took 17 iterations
-chi^2 at the minimum is 1.127871
-Parameter 0 at the minimum is 107.844078, expected: 100.000000
-Parameter 1 at the minimum is 2.961946, expected: 3.000000
-Parameter 2 at the minimum is 9.881010, expected: 10.000000
+chi^2 at the minimum is 1.13
+Parameter 0 at the minimum is 107.844, expected: 100.000000
+Parameter 1 at the minimum is 2.962, expected: 3.000000
+Parameter 2 at the minimum is 9.881, expected: 10.000000
 Mean relative difference is -0.006533
 The LMM minimization tests PASSED.
