diff options
Diffstat (limited to 'pecan/tests/test_hooks.py')
-rw-r--r-- | pecan/tests/test_hooks.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pecan/tests/test_hooks.py b/pecan/tests/test_hooks.py index 458e40b..ab0faea 100644 --- a/pecan/tests/test_hooks.py +++ b/pecan/tests/test_hooks.py @@ -1078,7 +1078,8 @@ class TestRequestViewerHook(TestCase): return 'Hello, World!' app = TestApp( - make_app(RootController(), + make_app( + RootController(), hooks=[ RequestViewerHook( config={'items':['path']}, writer=_stdout @@ -1112,7 +1113,8 @@ class TestRequestViewerHook(TestCase): return 'Hello, World!' app = TestApp( - make_app(RootController(), + make_app( + RootController(), hooks=[ RequestViewerHook( config={'blacklist':['/']}, writer=_stdout @@ -1138,7 +1140,8 @@ class TestRequestViewerHook(TestCase): return 'Hello, World!' app = TestApp( - make_app(RootController(), + make_app( + RootController(), hooks=[ RequestViewerHook( config={'items':['date']}, writer=_stdout |