From 4706a38c7a0aaee7dc809b3e416422f37058329d Mon Sep 17 00:00:00 2001 From: Joshua Chin Date: Thu, 18 Jun 2015 11:38:28 -0400 Subject: [PATCH] updated test because the new tokenizer removes URLs Former-commit-id: 35f472fcf922f8d0a969240f8957bab56cd43be1 --- tests/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test.py b/tests/test.py index 0c57773..abc33c3 100644 --- a/tests/test.py +++ b/tests/test.py @@ -105,7 +105,7 @@ def test_not_really_random(): # This not only tests random_ascii_words, it makes sure we didn't end # up with 'eos' as a very common Japanese word eq_(random_ascii_words(nwords=4, lang='ja', bits_per_word=0), - 'http http http http') + 'rt rt rt rt') @raises(ValueError)