From 5986efd2064d97ddceda50b75cba3b0ef5f0270c Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 3 Nov 2010 15:14:29 +0100 Subject: [PATCH] fix test after changing autotestdict default setup --- tests/run/extpropertyref.pyx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 -- 2.26.2