diff options
Diffstat (limited to 'Lib/test/test_random.py')
-rw-r--r-- | Lib/test/test_random.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_random.py b/Lib/test/test_random.py index 2c8c8e8854..c147105376 100644 --- a/Lib/test/test_random.py +++ b/Lib/test/test_random.py @@ -42,7 +42,7 @@ class TestBasicOps: def __hash__(self): return -1729 for arg in [None, 0, 1, -1, 10**20, -(10**20), - 3.14, 'a']: + False, True, 3.14, 'a']: self.gen.seed(arg) for arg in [1+2j, tuple('abc'), MySeed()]: |