diff options
author | Roald de Vries <rdevries@thoughtworks.com> | 2016-11-29 13:31:33 +0100 |
---|---|---|
committer | Roald de Vries <rdevries@thoughtworks.com> | 2016-11-29 13:31:33 +0100 |
commit | 0d293fad65d90b43016c21a851df100aebbf46cb (patch) | |
tree | 5432148dbba9e1c33ced1fa385d13fd15629efed /service/test/support | |
parent | 95101ac2180188af83439a7ba4c16b50816df708 (diff) |
construct full path from fragments
Diffstat (limited to 'service/test/support')
-rw-r--r-- | service/test/support/test_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/support/test_helper.py b/service/test/support/test_helper.py index c94d62c4..fbff5819 100644 --- a/service/test/support/test_helper.py +++ b/service/test/support/test_helper.py @@ -100,7 +100,7 @@ class TestRequest: class PixRequestMock(DummyRequest): def __init__(self, path): DummyRequest.__init__(self, path) - self.path = "/".join(path) + self.path = '/' + "/".join(path) self.content = None self.code = None self.cookies = {} |