Deleted Added
1import unittest
2from unit.applications.lang.python import TestApplicationPython
3
4
5class TestHTTPHeader(TestApplicationPython):
6 prerequisites = {'modules': {'python': 'any'}}
7
8 def test_http_header_value_leading_sp(self):
9 self.load('custom_header')
10
11 resp = self.get(
12 headers={
13 'Host': 'localhost',
14 'Custom-Header': ' ,',

--- 468 unchanged lines hidden ---