Skip to content

Commit

Permalink
Fix test for #3468
Browse files Browse the repository at this point in the history
  • Loading branch information
ines committed Mar 23, 2019
1 parent fbec72b commit 6b6e9b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spacy/tests/regression/test_issue3468.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ def test_issue3468():
assert len(list(doc.sents)) == 1
doc_bytes = doc.to_bytes()
new_doc = Doc(nlp.vocab).from_bytes(doc_bytes)
assert doc[0].is_sent_start
assert new_doc[0].is_sent_start
assert new_doc.is_sentenced
assert len(list(new_doc.sents)) == 1

0 comments on commit 6b6e9b6

Please sign in to comment.