diff options
author | Felix Hammerl <fhammerl@thoughtworks.com> | 2016-07-04 14:43:48 +0200 |
---|---|---|
committer | Felix Hammerl <fhammerl@thoughtworks.com> | 2016-07-04 14:43:48 +0200 |
commit | f2720ebbc4c860dcb7d5a3e5a1126a14f207b35c (patch) | |
tree | 0d81f5c211ecce76b2276432e225453bff59e08a /service/test | |
parent | 1b024b04a7e007b097853656dc5f7a54c5d4f53b (diff) |
Issue #738: Bypass cookie validation for sandbox
Diffstat (limited to 'service/test')
-rw-r--r-- | service/test/support/test_helper.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/service/test/support/test_helper.py b/service/test/support/test_helper.py index b78da4cd..3323a14e 100644 --- a/service/test/support/test_helper.py +++ b/service/test/support/test_helper.py @@ -100,6 +100,7 @@ class TestRequest: class PixRequestMock(DummyRequest): def __init__(self, path): DummyRequest.__init__(self, path) + self.path = "/".join(path) self.content = None self.code = None self.cookies = {} |