fix test case
authorStefan Behnel <scoder@users.berlios.de>
Sun, 15 Mar 2009 08:01:32 +0000 (09:01 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 15 Mar 2009 08:01:32 +0000 (09:01 +0100)
tests/errors/e_powop.pyx

index a73e69372e3a53e2776eeddc5ca9b38210573ce6..85ef57bebbc8a5747af762af348d5b3b5972e1c5 100644 (file)
@@ -5,6 +5,6 @@ def f():
        flt1 = flt2 ** str1 # error
 
 _ERRORS = u"""
-5:13: Invalid operand types for '**' (char *; float)
-6:13: Invalid operand types for '**' (float; char *)
+4:13: Invalid operand types for '**' (char *; float)
+5:13: Invalid operand types for '**' (float; char *)
 """