From d55e6d7d7ee50afd10a8f8c78e5c67b449f0fedf Mon Sep 17 00:00:00 2001 From: Corentin Jule Date: Sat, 5 Dec 2015 01:35:20 +0100 Subject: [PATCH] Comply with PEP257 --- tests/unit/browser/test_adblock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/browser/test_adblock.py b/tests/unit/browser/test_adblock.py index 02caca581..afc400d1d 100644 --- a/tests/unit/browser/test_adblock.py +++ b/tests/unit/browser/test_adblock.py @@ -97,7 +97,7 @@ class TestIsWhitelistedHost: """Test function adblock.is_whitelisted_host.""" def test_without_option(self, config_stub): - """Option host-blocking-whitelist does not exist""" + """Option host-blocking-whitelist does not exist.""" config_stub.data = {'content': {}} with pytest.raises(configexc.NoOptionError): adblock.is_whitelisted_host('qutebrowser.org')