From 7d224bfc9e39cb7885885bb554ca21ab26f5ddd0 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Mon, 21 May 2018 16:41:33 +0300 Subject: Tests: added tests for SERVER_SOFTWARE variable. --- test/python/variables/wsgi.py | 1 + 1 file changed, 1 insertion(+) (limited to 'test/python/variables/wsgi.py') diff --git a/test/python/variables/wsgi.py b/test/python/variables/wsgi.py index 60fa3401..53991e5e 100644 --- a/test/python/variables/wsgi.py +++ b/test/python/variables/wsgi.py @@ -10,6 +10,7 @@ def application(environ, start_response): ('Request-Uri', environ.get('REQUEST_URI')), ('Http-Host', environ.get('HTTP_HOST')), ('Server-Protocol', environ.get('SERVER_PROTOCOL')), + ('Server-Software', environ.get('SERVER_SOFTWARE')), ('Custom-Header', environ.get('HTTP_CUSTOM_HEADER')), ('Wsgi-Version', str(environ['wsgi.version'])), ('Wsgi-Url-Scheme', environ['wsgi.url_scheme']), -- cgit