Index: trunk/psLib/test/pstap/src/pstap.h
===================================================================
--- trunk/psLib/test/pstap/src/pstap.h	(revision 12410)
+++ trunk/psLib/test/pstap/src/pstap.h	(revision 12607)
@@ -25,5 +25,5 @@
 
 // use to test the value of a float
-# define ok_float(VALUE, EXPECT, ...) \
+# define is_float(VALUE, EXPECT, ...) \
 { \
     bool status = false; \
@@ -42,5 +42,5 @@
 
 // use to test the value of a float within a defined tolerance
-# define ok_float_tol(VALUE,EXPECT,TOL,...)\
+# define is_float_tol(VALUE,EXPECT,TOL,...)\
 { \
     bool status = false; \
@@ -59,5 +59,5 @@
 
 // use to test the value of a double
-# define ok_double(VALUE,EXPECT,...)\
+# define is_double(VALUE,EXPECT,...)\
 { \
     bool status = false; \
@@ -76,5 +76,5 @@
 
 // use to test the value of a double
-# define ok_double_tol(VALUE,EXPECT,TOL, ...)\
+# define is_double_tol(VALUE,EXPECT,TOL, ...)\
 { \
     bool status = false; \
@@ -92,5 +92,5 @@
 
 
-# define ok_str(VALUE, EXPECT, ...) \
+# define is_str(VALUE, EXPECT, ...) \
 { \
     int cmp = (strcmp(VALUE, EXPECT) == 0); \
@@ -103,5 +103,5 @@
 
 
-# define ok_strn(VALUE, EXPECT, N, ...)\
+# define is_strn(VALUE, EXPECT, N, ...)\
 { \
     int cmp = (strncmp(VALUE, EXPECT, N) == 0); \
