summaryrefslogtreecommitdiff
path: root/numpy/random/tests/test_randomstate_regression.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/random/tests/test_randomstate_regression.py')
-rw-r--r--numpy/random/tests/test_randomstate_regression.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/numpy/random/tests/test_randomstate_regression.py b/numpy/random/tests/test_randomstate_regression.py
index 1d8a0ed5a..4eb82fc4c 100644
--- a/numpy/random/tests/test_randomstate_regression.py
+++ b/numpy/random/tests/test_randomstate_regression.py
@@ -5,7 +5,6 @@ import pytest
from numpy.testing import (
assert_, assert_array_equal, assert_raises,
)
-from numpy.compat import long
import numpy as np
from numpy import random
@@ -52,13 +51,6 @@ class TestRegression:
msg = "Frequency was %f, should be < 0.23" % freq
assert_(freq < 0.23, msg)
- def test_permutation_longs(self):
- random.seed(1234)
- a = random.permutation(12)
- random.seed(1234)
- b = random.permutation(long(12))
- assert_array_equal(a, b)
-
def test_shuffle_mixed_dimension(self):
# Test for trac ticket #2074
for t in [[1, 2, 3, None],