From 0d293fad65d90b43016c21a851df100aebbf46cb Mon Sep 17 00:00:00 2001 From: Roald de Vries Date: Tue, 29 Nov 2016 13:31:33 +0100 Subject: construct full path from fragments --- service/test/support/test_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'service') 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 = {} -- cgit v1.2.3