From d10109bb38572a2ca169bd3c592a6229e451f3d7 Mon Sep 17 00:00:00 2001 From: Joshua Chin Date: Mon, 29 Jun 2015 11:04:19 -0400 Subject: [PATCH] changed japanese test because the most common japanese ascii word keeps changing Former-commit-id: 5ed03b006ce93ed619d2faa54a5d1b77036b0b2d --- tests/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test.py b/tests/test.py index 49422a1..3c96b4f 100644 --- a/tests/test.py +++ b/tests/test.py @@ -110,8 +110,8 @@ 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), - 'rt rt rt rt') + eq_(random_words(nwords=4, lang='ja', bits_per_word=0), + 'の の の の') @raises(ValueError)