diff options
author | Raymond Hettinger <python@rcn.com> | 2010-09-07 15:38:33 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-09-07 15:38:33 (GMT) |
commit | 7f7561ebfc10089d7ee651487835d6229d5a97e2 (patch) | |
tree | d74bca144be048d70fe99bd85124b5969c8bb38e /Lib/test/test_random.py | |
parent | c585eecfb0384a9c6b560477c1f04c43b55cc8e3 (diff) | |
download | cpython-7f7561ebfc10089d7ee651487835d6229d5a97e2.zip cpython-7f7561ebfc10089d7ee651487835d6229d5a97e2.tar.gz cpython-7f7561ebfc10089d7ee651487835d6229d5a97e2.tar.bz2 |
Remove invalid test (it was supposed to fail on 64-bit machines.).
Diffstat (limited to 'Lib/test/test_random.py')
-rw-r--r-- | Lib/test/test_random.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_random.py b/Lib/test/test_random.py index 08edead..feb52a5 100644 --- a/Lib/test/test_random.py +++ b/Lib/test/test_random.py @@ -244,10 +244,6 @@ class MersenneTwister_TestBasicOps(TestBasicOps): self.assertEqual([self.gen.random().hex() for i in range(4)], ['0x1.ac362300d90d2p-1', '0x1.9d16f74365005p-1', '0x1.1ebb4352e4c4dp-1', '0x1.1a7422abf9c11p-1']) - self.gen.seed("the quick brown fox", version=1) - self.assertEqual([self.gen.random().hex() for i in range(4)], - ['0x1.9ee265c177cdep-2', '0x1.bad51092e3c25p-1', - '0x1.85ff833f71576p-1', '0x1.87efb37462927p-1']) self.gen.seed("the quick brown fox", version=2) self.assertEqual([self.gen.random().hex() for i in range(4)], ['0x1.1294009b9eda4p-2', '0x1.2ff96171b0010p-1', |