summaryrefslogtreecommitdiff
path: root/test/test_exceptions.py
diff options
context:
space:
mode:
authorMichael Bourke <michael@iter8ve.com>2022-01-09 16:38:12 +1100
committerMike Bayer <mike_mp@zzzcomputing.com>2022-01-14 09:57:14 -0500
commit7e52b60b7dac75a3c7177e69244123c0dad9e9d9 (patch)
tree2df96da5716169b2351f442c272a39ed6940332f /test/test_exceptions.py
parent3c3196754b55b48c044e59a5beacb9a13bc25114 (diff)
downloadmako-7e52b60b7dac75a3c7177e69244123c0dad9e9d9.tar.gz
Refactor test.util into mako.testing
Fixes: #349 Change-Id: I202c252a913fb72cc328a6e7f0f33174802487d3
Diffstat (limited to 'test/test_exceptions.py')
-rw-r--r--test/test_exceptions.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_exceptions.py b/test/test_exceptions.py
index a2b8cf9..b1930c5 100644
--- a/test/test_exceptions.py
+++ b/test/test_exceptions.py
@@ -3,10 +3,10 @@ import sys
from mako import exceptions
from mako.lookup import TemplateLookup
from mako.template import Template
-from .util.exclusions import requires_no_pygments_exceptions
-from .util.exclusions import requires_pygments_14
-from .util.fixtures import TemplateTest
-from .util.helpers import result_lines
+from mako.testing.exclusions import requires_no_pygments_exceptions
+from mako.testing.exclusions import requires_pygments_14
+from mako.testing.fixtures import TemplateTest
+from mako.testing.helpers import result_lines
class ExceptionsTest(TemplateTest):