From: Stefan Behnel Date: Wed, 3 Nov 2010 14:14:29 +0000 (+0100) Subject: fix test after changing autotestdict default setup X-Git-Tag: 0.14.alpha0~247 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5986efd2064d97ddceda50b75cba3b0ef5f0270c;p=cython.git fix test after changing autotestdict default setup --- diff --git a/tests/run/extpropertyref.pyx b/tests/run/extpropertyref.pyx index 0feb9631..2efdffac 100644 --- a/tests/run/extpropertyref.pyx +++ b/tests/run/extpropertyref.pyx @@ -5,6 +5,9 @@ cdef class Spam: def __get__(self): """ This is the docstring for Spam.eggs.__get__ + + >>> True + True """ return 42 @@ -16,9 +19,9 @@ def tomato(): >>> lines = __test__.keys() >>> len(lines) 3 - >>> 'Spam.eggs.__get__ (line 5)' in lines + >>> 'Spam.eggs.__get__ (line 5)' in lines or lines True - >>> 'tomato (line 11)' in lines + >>> 'tomato (line 14)' in lines or lines True """ cdef Spam spam