diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-12 20:30:41 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-12 20:30:41 (GMT) |
commit | eff64447512b026416fce4e65730e25633a5f1ac (patch) | |
tree | dbc3c2d4a4b9b868e61051aadbf04e17d22aabf8 /Lib/test/test_random.py | |
parent | a2dfc35a1341fc73a074cda9190bb99a821f8095 (diff) | |
download | cpython-eff64447512b026416fce4e65730e25633a5f1ac.zip cpython-eff64447512b026416fce4e65730e25633a5f1ac.tar.gz cpython-eff64447512b026416fce4e65730e25633a5f1ac.tar.bz2 |
Fix whitespaces
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 7b4b110..34e144c 100644 --- a/Lib/test/test_random.py +++ b/Lib/test/test_random.py @@ -71,7 +71,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) |