Skip to content

Commit 231ecfe

Browse files
authored
Update test_http_wsgi.py
1 parent 92cbd72 commit 231ecfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_http_wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def test_path_encoding_utf8(self):
216216
url = 'http://example.com/Pippi%20L%C3%A5ngstrump'
217217
request = AsgiRequest(self._generate_func_request(url=url))
218218

219-
self.assertEqual(request.path_info, u'Pippi L\u00e5ngstrump')
219+
self.assertEqual(request.path_info, u'/Pippi L\u00e5ngstrump')
220220

221221
def test_path_encoding_latin1(self):
222222
url = 'http://example.com/Pippi%20L%C3%A5ngstrump'

0 commit comments

Comments
 (0)