From 9b02abb5ea8d4b603e74d7190ce1fee0e7f1d719 Mon Sep 17 00:00:00 2001 From: Joshua Chin Date: Mon, 29 Jun 2015 11:05:01 -0400 Subject: [PATCH] changed english test to take random ascii words Former-commit-id: a49b66880e4b815573adeeedc20839d01cb1a25c --- tests/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test.py b/tests/test.py index 3c96b4f..f37552e 100644 --- a/tests/test.py +++ b/tests/test.py @@ -105,7 +105,7 @@ def test_phrase_freq(): def test_not_really_random(): # If your xkcd-style password comes out like this, maybe you shouldn't # use it - eq_(random_words(nwords=4, lang='en', bits_per_word=0), + eq_(random_ascii_words(nwords=4, lang='en', bits_per_word=0), 'the the the the') # This not only tests random_ascii_words, it makes sure we didn't end