summaryrefslogtreecommitdiff
path: root/pecan/tests/test_hooks.py
diff options
context:
space:
mode:
authorRyan Petrello <lists@ryanpetrello.com>2012-10-29 11:35:45 -0400
committerRyan Petrello <lists@ryanpetrello.com>2012-10-29 11:35:45 -0400
commit0a30cd57b1c60d25460e552e10ac25dd8ec0b16e (patch)
tree6d1ee7b93d6d8846e52f8202421534e6f255787d /pecan/tests/test_hooks.py
parent19b291d20d4e6d7d2479aae79ebce7a94a36f1b7 (diff)
downloadpecan-0a30cd57b1c60d25460e552e10ac25dd8ec0b16e.tar.gz
pep8 compliance
Diffstat (limited to 'pecan/tests/test_hooks.py')
-rw-r--r--pecan/tests/test_hooks.py9
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