From 8a8437470e224ee53acbd9a353c7d01a83168cd4 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sat, 27 Dec 2014 23:06:51 +1300 Subject: Move onboarding app to Tornado Two reasons for this. First, this removes flask and its dependencies, which are quite sizeable. Second, pyinstaller now barfs on simplejson, which is a Flask dependency. I just don't have time to fix this upstream, so doing what we should be doing anyway is a no-brainer. --- test/tservers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/tservers.py b/test/tservers.py index 12154ba7..37929d1a 100644 --- a/test/tservers.py +++ b/test/tservers.py @@ -158,10 +158,10 @@ class HTTPProxTest(ProxTestBase): if self.ssl: p = libpathod.pathoc.Pathoc(("127.0.0.1", self.proxy.port), True) p.connect((APP_HOST, APP_PORT)) - return p.request("get:'/%s'"%page) + return p.request("get:'%s'"%page) else: p = self.pathoc() - return p.request("get:'http://%s/%s'"%(APP_HOST, page)) + return p.request("get:'http://%s%s'"%(APP_HOST, page)) class TResolver: -- cgit v1.2.3