Index: trunk/psLib/test/imageops/tst_psImageSmooth.c
===================================================================
--- trunk/psLib/test/imageops/tst_psImageSmooth.c	(revision 6280)
+++ trunk/psLib/test/imageops/tst_psImageSmooth.c	(revision 7071)
@@ -5,6 +5,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-02-01 21:35:59 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-05-05 02:48:34 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -83,5 +83,5 @@
     }
     if (VERBOSE) {
-        p_psImagePrint(1, img, "The Smmothed Image");
+        p_psImagePrint(1, img, "The Smoothed Image");
     }
 
@@ -132,5 +132,5 @@
         }
         if (VERBOSE) {
-            p_psImagePrint(1, img, "The Smmothed Image");
+            p_psImagePrint(1, img, "The Smoothed Image");
         }
 
@@ -139,5 +139,6 @@
                 for (psS32 j = 1 ; j < numCols-1 ; j++) {
                     if ((fabs(img->data.F32[i][j] - 0.5) > 0.1)) {
-                        printf("TEST ERROR: img[%d][%d] was %f, expected 0.5\n", i, j, img->data.F32[i][j]);
+                        printf("TEST ERROR: img[%d][%d] was %f, expected 0.5\n",
+                               i, j, img->data.F32[i][j]);
                         testStatus = false;
                     }
@@ -150,5 +151,6 @@
                 for (psS32 j = 1 ; j < numCols-1 ; j++) {
                     if ((fabs(img->data.F64[i][j] - 0.5) > 0.1)) {
-                        printf("TEST ERROR: img[%d][%d] was %f, expected 0.5\n", i, j, img->data.F64[i][j]);
+                        printf("TEST ERROR: img[%d][%d] was %f, expected 0.5\n",
+                               i, j, img->data.F64[i][j]);
                         testStatus = false;
                     }
@@ -161,25 +163,4 @@
     return(testStatus);
 }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
 
 static psS32 testImageSmooth()
