Skip to content

Commit

Permalink
There's no zope.testing.doctest any more
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Nov 18, 2015
1 parent 865e50d commit b278dcf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/z3c/jbot/tests/test_doctests.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import zope.interface
import zope.component
import zope.testing.doctest
import doctest
import unittest

OPTIONFLAGS = (zope.testing.doctest.ELLIPSIS |
zope.testing.doctest.NORMALIZE_WHITESPACE)
OPTIONFLAGS = (doctest.ELLIPSIS |
doctest.NORMALIZE_WHITESPACE)

from common import setUp
from common import tearDown
Expand All @@ -16,7 +16,7 @@ def test_suite():
component=zope.component)

return unittest.TestSuite((
zope.testing.doctest.DocFileSuite(
doctest.DocFileSuite(
'README.txt',
optionflags=OPTIONFLAGS,
setUp=setUp,
Expand Down

0 comments on commit b278dcf

Please sign in to comment.