From 2190316b27e3da6eb44548608e8aab1ac23fe524 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 2 Aug 2015 20:16:28 +0200 Subject: [PATCH] Fix lint. --- tests/browser/http/test_http_hypothesis.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/browser/http/test_http_hypothesis.py b/tests/browser/http/test_http_hypothesis.py index bc0377afa..174509011 100644 --- a/tests/browser/http/test_http_hypothesis.py +++ b/tests/browser/http/test_http_hypothesis.py @@ -36,6 +36,7 @@ from qutebrowser.browser import http, rfc6266 ]) @hypothesis.given(strategies.text(alphabet=[chr(x) for x in range(255)])) def test_parse_content_disposition(template, stubs, s): + """Test parsing headers based on templates which hypothesis completes.""" header = template.format(s) reply = stubs.FakeNetworkReply(headers={'Content-Disposition': header}) http.parse_content_disposition(reply)