IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 27, 2007, 12:52:03 PM (19 years ago)
Author:
jhoblitt
Message:

s/is_float/is_float/g
s/is_float_tol/is_float_tol/g
s/is_double/is_double/g
s/is_double_tol/is_double_tol/g
s/is_str/is_str/g
s/is_strn/is_strn/g

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/astro/tap_psTime_02.c

    r12413 r12607  
    1212 *  @author  Eric Van Alst, MHPCC
    1313 *
    14  *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
    15  *  @date  $Date: 2007-03-13 00:02:14 $
     14 *  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
     15 *  @date  $Date: 2007-03-27 22:52:02 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6666
    6767        psF64 lmst = psTimeToLMST(NULL, 0);
    68         ok_double(lmst, NAN, "psTimeToLMST(time,0) returned NAN");
     68        is_double(lmst, NAN, "psTimeToLMST(time,0) returned NAN");
    6969
    7070        ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
     
    8282
    8383        psF64 lmst = psTimeToLMST(time, 0.0);
    84         ok_double_tol(lmst, testTime1LMST0, ERROR_TOL, "psTimeToLMST() returned the correct time");
     84        is_double_tol(lmst, testTime1LMST0, ERROR_TOL, "psTimeToLMST() returned the correct time");
    8585
    8686        psFree(time);
     
    102102
    103103        psF64 lmst = psTimeToLMST(time,0.0);
    104         ok_double(lmst, NAN, "psTimeToLMST() generated a NAN for incorrect type");
     104        is_double(lmst, NAN, "psTimeToLMST() generated a NAN for incorrect type");
    105105
    106106        psFree(time);
Note: See TracChangeset for help on using the changeset viewer.