Skip to content

Commit

Permalink
fix up imports from functional tests in grokcore.view
Browse files Browse the repository at this point in the history
  • Loading branch information
janwijbrand committed Jan 12, 2018
1 parent 1694eda commit 5339549
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
install_requires=[
'grokcore.component >= 2.5',
'grokcore.security >= 1.6',
'grokcore.view >= 2.7',
'grokcore.view >= 3.0.3',
'martian >= 0.14',
'setuptools',
'zope.authentication',
Expand Down
4 changes: 2 additions & 2 deletions src/grokcore/layout/tests/layout/staticfolder.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
>>> mongo = Dummy()
>>> mylayout = getMultiAdapter((request, mongo), ILayout)
>>> mylayout.static
<grokcore.view.ftests.static.simple.DummyResource object at 0...>
<grokcore.view.tests.functional.static.simple.DummyResource object at 0...>
"""

import grokcore.component as grok
from grokcore.layout import Layout
from grokcore.view.ftests.static.simple import DummyResource
from grokcore.view.tests.functional.static.simple import DummyResource

import zope.component
import zope.interface
Expand Down

0 comments on commit 5339549

Please sign in to comment.