Skip to content

Commit

Permalink
Fix tests to work with zope.configuration 3.7.4 as pinned by GTK.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Feb 19, 2016
1 parent faaaa70 commit 9f71c07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/grokcore/component/tests/zcml/exclude.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"""

from zope.configuration import xmlconfig
from zope.configuration import config, xmlconfig
from grokcore.component.tests.zcml import excludepkg

context = xmlconfig.ConfigurationMachine()
context = config.ConfigurationMachine()
xmlconfig.registerCommonDirectives(context)
context.package = excludepkg
4 changes: 2 additions & 2 deletions src/grokcore/component/tests/zcml/excludemany.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
"""

from zope.configuration import xmlconfig
from zope.configuration import config, xmlconfig
from grokcore.component.tests.zcml import excludemanypkg

context = xmlconfig.ConfigurationMachine()
context = config.ConfigurationMachine()
xmlconfig.registerCommonDirectives(context)
context.package = excludemanypkg

0 comments on commit 9f71c07

Please sign in to comment.