diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-07-31 18:54:22 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-07-31 19:07:38 -0600 |
commit | 56471a170eee1c4694cde1889b8532e25f40e5d0 (patch) | |
tree | b8ff73b46dbbbd4b521d7987c5c7d47df3c8e81e /numpy/random/tests/test_regression.py | |
parent | 01b0d7e82211b581aaff925e3ccc36cff9ac1895 (diff) | |
download | numpy-56471a170eee1c4694cde1889b8532e25f40e5d0.tar.gz |
STY: PEP8 fixups for numpy/random.
Diffstat (limited to 'numpy/random/tests/test_regression.py')
-rw-r--r-- | numpy/random/tests/test_regression.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/tests/test_regression.py b/numpy/random/tests/test_regression.py index 1bba5d91d..ccffd033e 100644 --- a/numpy/random/tests/test_regression.py +++ b/numpy/random/tests/test_regression.py @@ -44,7 +44,7 @@ class TestRegression(TestCase): b = np.random.permutation(long(12)) assert_array_equal(a, b) - def test_randint_range(self) : + def test_randint_range(self): # Test for ticket #1690 lmax = np.iinfo('l').max lmin = np.iinfo('l').min |