From e2d249541d22c7c8ffd84908e5d111ed7e84c4b3 Mon Sep 17 00:00:00 2001 From: Michal Siedlaczek Date: Sat, 21 Apr 2018 12:33:10 -0400 Subject: [PATCH] Fix test function comment --- tests/unit/browser/webengine/test_spell.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/unit/browser/webengine/test_spell.py b/tests/unit/browser/webengine/test_spell.py index faccd7745..e8ce3cecc 100644 --- a/tests/unit/browser/webengine/test_spell.py +++ b/tests/unit/browser/webengine/test_spell.py @@ -75,8 +75,9 @@ def test_local_filename_dictionary_installed(tmpdir, monkeypatch): def test_local_filename_installed_malformed(tmpdir, monkeypatch, caplog): - """Tests retrieving local filename when the dict installed and another - file is malformed.""" + """Tests retrieving local filename when the dict installed. + + In this usecase, another existing file is malformed.""" monkeypatch.setattr(spell, 'dictionary_dir', lambda: str(tmpdir)) for lang_file in ['en-US-11-0.bdic', 'en-US-7-1.bdic', 'en-US.bdic']: (tmpdir / lang_file).ensure()