Skip to content

Commit

Permalink
Fix noqa [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
ines committed Mar 7, 2019
1 parent fa7314b commit 96b91a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spacy/tests/lang/test_initialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
@pytest.mark.parametrize("lang", LANGUAGES)
def test_lang_initialize(lang, capfd):
"""Test that languages can be initialized."""
nlp = get_lang_class(lang)() # noqa: F841
nlp = get_lang_class(lang)()
# Check for stray print statements (see #3342)
doc = nlp("test")
doc = nlp("test") # noqa: F841
captured = capfd.readouterr()
assert not captured.out

0 comments on commit 96b91a8

Please sign in to comment.