aboutsummaryrefslogtreecommitdiff
path: root/tests/test_app.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_app.py')
-rw-r--r--tests/test_app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_app.py b/tests/test_app.py
index a2ff27a..1ff504c 100644
--- a/tests/test_app.py
+++ b/tests/test_app.py
@@ -1,11 +1,11 @@
from tornado.testing import AsyncHTTPTestCase
-from pyapd import app
+from pyapd import app, config
class TestApp(AsyncHTTPTestCase):
def get_app(self, *args, **kw):
- return app.App()
+ return app.App(config.Config('tests/data/test_config.yaml'))
def test_root(self):
res = self.fetch('/')