mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
Catch deprecation warning
This commit is contained in:
parent
5914faafbb
commit
260cb37224
|
@ -161,7 +161,7 @@ def test_is_sent_start(en_tokenizer):
|
||||||
doc[5].is_sent_start = True
|
doc[5].is_sent_start = True
|
||||||
assert doc[5].is_sent_start is True
|
assert doc[5].is_sent_start is True
|
||||||
# Backwards compatibility
|
# Backwards compatibility
|
||||||
assert doc[0].sent_start is False
|
with pytest.warns(DeprecationWarning):
|
||||||
|
assert doc[0].sent_start is False
|
||||||
doc.is_parsed = True
|
doc.is_parsed = True
|
||||||
assert len(list(doc.sents)) == 2
|
assert len(list(doc.sents)) == 2
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user