Index: trunk/psLib/test/dataIO/tst_psDB.c
===================================================================
--- trunk/psLib/test/dataIO/tst_psDB.c	(revision 4394)
+++ trunk/psLib/test/dataIO/tst_psDB.c	(revision 4427)
@@ -9,6 +9,6 @@
  *  @author Aaron Culliney, MHPCC
  *
- *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-25 02:45:15 $
+ *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-29 19:39:56 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -2043,5 +2043,5 @@
 
     // Delete row with valid arguments
-    chgRows = psDBDeleteRows(dbh,table,where);
+    chgRows = psDBDeleteRows(dbh,table,where,10);
     if(chgRows != 1) {
         psError(PS_ERR_UNKNOWN,true,"Deleted rows %ld not as expected %ld",
@@ -2069,5 +2069,5 @@
 
     // Attempt to delete row just deleted again
-    chgRows = psDBDeleteRows(dbh,table,where);
+    chgRows = psDBDeleteRows(dbh,table,where,10);
     if(chgRows != 0) {
         psError(PS_ERR_UNKNOWN,true,"Deleted rows %ld not as expected %ld",
@@ -2096,5 +2096,5 @@
     // Attempt to delete row with NULL database
     psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message for NULL database");
-    chgRows = psDBDeleteRows(NULL,table,where);
+    chgRows = psDBDeleteRows(NULL,table,where,10);
     if(chgRows > 0) {
         psError(PS_ERR_UNKNOWN,true,"Deleted rows %ld not as expected %ld",
@@ -2107,5 +2107,5 @@
     // Attempt to delete row with invalid table
     psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message for invalid table");
-    chgRows = psDBDeleteRows(dbh,"table999",where);
+    chgRows = psDBDeleteRows(dbh,"table999",where,10);
     if(chgRows > 0) {
         psError(PS_ERR_UNKNOWN,true,"Deleted rows %ld not as expected %ld",
@@ -2117,5 +2117,5 @@
 
     // Attempt to delete row with NULL where - deletes all rows
-    chgRows = psDBDeleteRows(dbh,table,NULL);
+    chgRows = psDBDeleteRows(dbh,table,NULL,10);
     if(chgRows != 2) {
         psError(PS_ERR_UNKNOWN,true,"Deleted rows %ld not as expected %ld",
@@ -2143,5 +2143,5 @@
 
     // Attempt to delete row with NULL where - deletes all rows from an empty table
-    chgRows = psDBDeleteRows(dbh,table,NULL);
+    chgRows = psDBDeleteRows(dbh,table,NULL,10);
     if(chgRows != 0) {
         psError(PS_ERR_UNKNOWN,true,"Deleted rows %ld not as expected %ld",
