Skip to content

Commit

Permalink
Fix deprecation error in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Dec 3, 2019
1 parent f3dc439 commit f9fffcc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CHANGES
4.3.2 (unreleased)
------------------

- Nothing changed yet.
- Fix deprecation error in tests.


4.3.1 (2019-07-01)
Expand Down
7 changes: 4 additions & 3 deletions src/zope/app/publication/tests/test_zopepublication.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
from ZODB.DemoStorage import DemoStorage
import transaction

from zope.interface.verify import verifyClass
from zope.interface import implementer, classImplements, implementedBy
from zope.component.interfaces import ComponentLookupError, ISite
from zope.component.interfaces import ISite
from zope.error.interfaces import IErrorReportingUtility
from zope.interface import implementer, classImplements, implementedBy
from zope.interface.interfaces import ComponentLookupError
from zope.interface.verify import verifyClass
from zope.location import Location
from zope.publisher.base import TestPublication, TestRequest
from zope.publisher.interfaces import IRequest, IPublishTraverse
Expand Down

0 comments on commit f9fffcc

Please sign in to comment.