Index: trunk/psLib/test/astro/tst_psTime_01.c
===================================================================
--- trunk/psLib/test/astro/tst_psTime_01.c	(revision 4601)
+++ trunk/psLib/test/astro/tst_psTime_01.c	(revision 4944)
@@ -23,6 +23,6 @@
  *  @author  Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2005-07-13 02:46:58 $
+ *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2005-09-02 21:32:06 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -636,5 +636,5 @@
     // Attempt to convert NULL string
     psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message for NULL ISO string");
-    time = psTimeFromISO(NULL);
+    time = psTimeFromISO(NULL, PS_TIME_TAI);
     if(time != NULL) {
         psError(PS_ERR_UNKNOWN,true,"Did not return NULL as expected for NULL ISO string");
@@ -643,5 +643,5 @@
 
     // Convert valid ISO string
-    time = psTimeFromISO(testTime1Str);
+    time = psTimeFromISO(testTime1Str, PS_TIME_TAI);
     if(time->type != PS_TIME_TAI) {
         psError(PS_ERR_UNKNOWN,true,"Type %d not as expected %d",
@@ -658,5 +658,5 @@
     // Attempt to convert invalid ISO string
     psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error for invalid ISO string");
-    time = psTimeFromISO("Here I am");
+    time = psTimeFromISO("Here I am", PS_TIME_TAI);
     if(time != NULL) {
         psError(PS_ERR_UNKNOWN,true,"Did not return NULL as expected for invalid ISO string");
