Skip to content

Commit

Permalink
Fix test, replacing < with <=
Browse files Browse the repository at this point in the history
  • Loading branch information
jsvine committed Mar 24, 2017
1 parent 2b0fef7 commit f2b01f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def test_short_sentence(self):
sent = None
while sent is None:
sent = text_model.make_short_sentence(45)
assert len(sent) < 45
assert len(sent) <= 45

def test_short_sentence_min_chars(self):
sent = None
Expand Down

0 comments on commit f2b01f7

Please sign in to comment.