diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-12 20:30:59 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-12 20:30:59 (GMT) |
commit | 4e7d3ab405ddedcc53617bc08bcc64d59f29a3bf (patch) | |
tree | ef577cd1312db28154f5f4e5396b3842b5484037 | |
parent | 730001163f1bd7469c17743e1846cf2761639191 (diff) | |
parent | eff64447512b026416fce4e65730e25633a5f1ac (diff) | |
download | cpython-4e7d3ab405ddedcc53617bc08bcc64d59f29a3bf.zip cpython-4e7d3ab405ddedcc53617bc08bcc64d59f29a3bf.tar.gz cpython-4e7d3ab405ddedcc53617bc08bcc64d59f29a3bf.tar.bz2 |
Fix whitespaces
-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 84f81ee..fa03073 100644 --- a/Lib/test/test_random.py +++ b/Lib/test/test_random.py @@ -70,7 +70,7 @@ class TestBasicOps(unittest.TestCase): with self.assertRaises(ValueError): random.triangular(low=5, high=2, mode=1) with self.assertRaises(ValueError): - random.triangular(low=-2, high=-5) + random.triangular(low=-2, high=-5) self.assertEqual(random.triangular(low=10, high=10), 10) self.assertEqual(random.triangular(low=10, high=10, mode=10), 10) |