diff options
author | Christoph Gohlke <cgohlke@uci.edu> | 2013-05-27 14:42:33 -0600 |
---|---|---|
committer | Christoph Gohlke <cgohlke@uci.edu> | 2013-05-27 14:42:33 -0600 |
commit | 96bb03637780fa631fe49d9f48d4cc5bef42ca62 (patch) | |
tree | 4f490ecc6e30784bfab5daaabd9376ab2e2c1714 /numpy/random/tests/test_regression.py | |
parent | 6f8b7c07f763d0c90f0d68a0d16eec738cf30c22 (diff) | |
download | numpy-96bb03637780fa631fe49d9f48d4cc5bef42ca62.tar.gz |
TST: remove docstring from test_randint_range function
See doc/TESTS.rst.txt for the reason.
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 b3d2c0add..70858b049 100644 --- a/numpy/random/tests/test_regression.py +++ b/numpy/random/tests/test_regression.py @@ -47,7 +47,7 @@ class TestRegression(TestCase): assert_array_equal(a, b) def test_randint_range(self) : - """Test for ticket #1690""" + # Test for ticket #1690 lmax = np.iinfo('l').max lmin = np.iinfo('l').min try: |