summaryrefslogtreecommitdiff
path: root/tests/test_runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_runner.py')
-rw-r--r--tests/test_runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_runner.py b/tests/test_runner.py
index e53018b..e77d103 100644
--- a/tests/test_runner.py
+++ b/tests/test_runner.py
@@ -119,7 +119,7 @@ class Test_run(unittest.TestCase):
)
def test_simple_call(self):
- import tests.fixtureapps.runner as _apps
+ from tests.fixtureapps import runner as _apps
def check_server(app, **kw):
self.assertIs(app, _apps.app)
@@ -133,7 +133,7 @@ class Test_run(unittest.TestCase):
self.assertEqual(runner.run(argv=argv, _serve=check_server), 0)
def test_returned_app(self):
- import tests.fixtureapps.runner as _apps
+ from tests.fixtureapps import runner as _apps
def check_server(app, **kw):
self.assertIs(app, _apps.app)