Missing fullstop in a docstring

This commit is contained in:
George Edward Bulmer 2018-03-24 22:56:47 +00:00
parent eb5684e5f7
commit a85ac1725f

View File

@ -250,7 +250,7 @@ def test_successful_update(config_stub, basedir, download_stub,
def test_parsing_multiple_hosts_on_line(config_stub, basedir, download_stub, def test_parsing_multiple_hosts_on_line(config_stub, basedir, download_stub,
data_tmpdir, tmpdir, win_registry, data_tmpdir, tmpdir, win_registry,
caplog): caplog):
"""Ensure multiple hosts on a line get parsed correctly""" """Ensure multiple hosts on a line get parsed correctly."""
host_blocker = adblock.HostBlocker() host_blocker = adblock.HostBlocker()
bytes_host_line = ' '.join(BLOCKLIST_HOSTS).encode('utf-8') bytes_host_line = ' '.join(BLOCKLIST_HOSTS).encode('utf-8')
host_blocker._parse_line(bytes_host_line) host_blocker._parse_line(bytes_host_line)