fix test that was broken after merge
authorStefan Behnel <scoder@users.berlios.de>
Fri, 21 Aug 2009 12:33:25 +0000 (14:33 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 21 Aug 2009 12:33:25 +0000 (14:33 +0200)
tests/run/cdef_setitem_T284.pyx

index 4438e4daa095631954397af250e6a034025d4a85..b59443663dacf82998755c3fdbdce068a1cc27e4 100644 (file)
@@ -1,19 +1,9 @@
 __doc__ = u'''
 >>> no_cdef()
 >>> with_cdef()
-<<<<<<< local
-
->>> test_list(range(11), -2, None)
-=======
 >>> test_list(list(range(11)), -2, None)
->>>>>>> other
 [0, 1, 2, 3, 4, 5, 6, 7, 8, None, 10]
-<<<<<<< local
-
->>> test_list(range(11), "invalid index", None)
-=======
 >>> test_list(list(range(11)), "invalid index", None) #doctest: +ELLIPSIS
->>>>>>> other
 Traceback (most recent call last):
 ...
 TypeError: list indices must be integers...