summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-12 20:30:41 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-12 20:30:41 (GMT)
commiteff64447512b026416fce4e65730e25633a5f1ac (patch)
treedbc3c2d4a4b9b868e61051aadbf04e17d22aabf8 /Lib
parenta2dfc35a1341fc73a074cda9190bb99a821f8095 (diff)
downloadcpython-eff64447512b026416fce4e65730e25633a5f1ac.zip
cpython-eff64447512b026416fce4e65730e25633a5f1ac.tar.gz
cpython-eff64447512b026416fce4e65730e25633a5f1ac.tar.bz2
Fix whitespaces
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_random.py2
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)