diff options
author | gfyoung <gfyoung@mit.edu> | 2015-12-29 23:51:41 -0800 |
---|---|---|
committer | gfyoung <gfyoung@mit.edu> | 2015-12-29 23:52:07 -0800 |
commit | eebb304a0c91c9f52bc883a352b2520e3ca7c88e (patch) | |
tree | 39cf8a541072d52e4c930155b40db5347b06e76c /numpy/random/tests/test_random.py | |
parent | 004639d07fd161d1394f5dda1b6ed42c777f3c80 (diff) | |
download | numpy-eebb304a0c91c9f52bc883a352b2520e3ca7c88e.tar.gz |
MAINT: Cleaned up unused variables and spelling mistakes in np.random modules
Diffstat (limited to 'numpy/random/tests/test_random.py')
-rw-r--r-- | numpy/random/tests/test_random.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/tests/test_random.py b/numpy/random/tests/test_random.py index 0ce341ead..c3aa43f0e 100644 --- a/numpy/random/tests/test_random.py +++ b/numpy/random/tests/test_random.py @@ -171,7 +171,7 @@ class TestRandomDist(TestCase): # Tests whether random_integers can generate the # maximum allowed Python int that can be converted # into a C long. Previous implementations of this - # method have thrown an OverflowError when attemping + # method have thrown an OverflowError when attempting # to generate this integer. actual = np.random.random_integers(np.iinfo('l').max, np.iinfo('l').max) |