mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 17:31:41 +00:00
revert changes to test_not_really_random
This commit is contained in:
parent
a49b66880e
commit
bbf7b9de34
@ -105,13 +105,13 @@ def test_phrase_freq():
|
|||||||
def test_not_really_random():
|
def test_not_really_random():
|
||||||
# If your xkcd-style password comes out like this, maybe you shouldn't
|
# If your xkcd-style password comes out like this, maybe you shouldn't
|
||||||
# use it
|
# use it
|
||||||
eq_(random_ascii_words(nwords=4, lang='en', bits_per_word=0),
|
eq_(random_words(nwords=4, lang='en', bits_per_word=0),
|
||||||
'the the the the')
|
'the the the the')
|
||||||
|
|
||||||
# This not only tests random_ascii_words, it makes sure we didn't end
|
# This not only tests random_ascii_words, it makes sure we didn't end
|
||||||
# up with 'eos' as a very common Japanese word
|
# up with 'eos' as a very common Japanese word
|
||||||
eq_(random_words(nwords=4, lang='ja', bits_per_word=0),
|
eq_(random_ascii_words(nwords=4, lang='ja', bits_per_word=0),
|
||||||
'の の の の')
|
'e e e e')
|
||||||
|
|
||||||
|
|
||||||
@raises(ValueError)
|
@raises(ValueError)
|
||||||
|
Loading…
Reference in New Issue
Block a user