test fix
authorStefan Behnel <scoder@users.berlios.de>
Fri, 16 Jul 2010 06:59:59 +0000 (08:59 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 16 Jul 2010 06:59:59 +0000 (08:59 +0200)
tests/run/builtin_min_max.pyx

index b05b2d08f33d9085612beb7cb2fcf655c2aca299..1c80980543fffb72bb4158d5a7504341084e4e41 100644 (file)
@@ -3,7 +3,7 @@ cimport cython
 
 # min()
 
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
 @cython.test_fail_if_path_exists("//SimpleCallNode")
 def min3(a,b,c):
     """
@@ -20,7 +20,7 @@ def min3(a,b,c):
     """
     return min(a,b,c)
 
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
 @cython.test_fail_if_path_exists("//SimpleCallNode")
 def min3_typed(int a, int b, int c):
     """
@@ -37,7 +37,7 @@ def min3_typed(int a, int b, int c):
     """
     return min(a,b,c)
 
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
 @cython.test_fail_if_path_exists("//SimpleCallNode")
 def literal_min3():
     """
@@ -48,7 +48,7 @@ def literal_min3():
 
 # max()
 
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
 @cython.test_fail_if_path_exists("//SimpleCallNode")
 def max3(a,b,c):
     """
@@ -65,7 +65,7 @@ def max3(a,b,c):
     """
     return max(a,b,c)
 
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
 @cython.test_fail_if_path_exists("//SimpleCallNode")
 def max3_typed(int a, int b, int c):
     """
@@ -82,7 +82,7 @@ def max3_typed(int a, int b, int c):
     """
     return max(a,b,c)
 
-@cython.test_assert_path_exists("//IfStatNode")
+@cython.test_assert_path_exists("//CondExprNode")
 @cython.test_fail_if_path_exists("//SimpleCallNode")
 def literal_max3():
     """