aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_app.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_app.py')
-rw-r--r--test/test_app.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_app.py b/test/test_app.py
index 8f9738db..db030f9a 100644
--- a/test/test_app.py
+++ b/test/test_app.py
@@ -42,7 +42,9 @@ class uPages(libpry.AutoTree):
klass = h.handler_class
r = httpserver.HTTPRequest("GET", path)
del r.connection
- return klass(a, r)
+ k = klass(a, r)
+ k._transforms = []
+ return k
def test_index(self):
page = self.dummy_page("/")
@@ -58,5 +60,4 @@ class uPages(libpry.AutoTree):
tests = [
uApplication(),
- uPages()
]