Index: /trunk/psLib/test/dataManip/tst_psMatrix02.c
===================================================================
--- /trunk/psLib/test/dataManip/tst_psMatrix02.c	(revision 2678)
+++ /trunk/psLib/test/dataManip/tst_psMatrix02.c	(revision 2679)
@@ -7,12 +7,11 @@
  *     B)  Null input psImage
  *     C)  Incorrect type for input pointer
- *     D)  Matrix not square for input pointer
- *     E)  Incorrect type for output pointer
- *     F)  Matrix not square for output pointer
+ *     D)  Incorrect type for output pointer
+ *     E)  Matrix not square for output pointer
  *
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2004-10-27 00:57:33 $
+ *  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2004-12-09 22:50:39 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -29,5 +28,5 @@
     psImage *inImage = (psImage*)psImageAlloc(3, 3, PS_TYPE_F64);
     psImage *outImage = (psImage*)psImageAlloc(3, 3, PS_TYPE_F64);
-    psImage *badImage1 = (psImage*)psImageAlloc(3, 3, PS_TYPE_F32);
+    psImage *badImage1 = (psImage*)psImageAlloc(3, 3, PS_TYPE_C32);
     psImage *badImage2 = (psImage*)psImageAlloc(3, 2, PS_TYPE_F64);
 
@@ -50,11 +49,5 @@
     printFooter(stdout, "psMatrix", "Incorrect type for input pointer", true);
 
-    // Test D - Matrix not square for input pointer
-    printNegativeTestHeader(stdout,"psMatrix", "Matrix not square for input pointer",
-                            "Invalid operation: inImage not square array.", 0);
-    psMatrixTranspose(outImage, badImage2);
-    printFooter(stdout, "psMatrix", "Matrix not square for input pointer", true);
-
-    // Test E - Incorrect type for output pointer
+    // Test D - Incorrect type for output pointer
     printNegativeTestHeader(stdout,"psMatrix", "Incorrect type for output pointer",
                             "Invalid operation: outImage not PS_TYPE_F64.", 0);
@@ -62,5 +55,5 @@
     printFooter(stdout, "psMatrix", "Incorrect type for output pointer", true);
 
-    // Test F - Matrix not square for output pointer
+    // Test E - Matrix not square for output pointer
     printNegativeTestHeader(stdout,"psMatrix", "Matrix not square for output pointer",
                             "Invalid operation: outImage not square array.", 0);
