summaryrefslogtreecommitdiff
path: root/networkx/utils/tests/test_decorators.py
diff options
context:
space:
mode:
Diffstat (limited to 'networkx/utils/tests/test_decorators.py')
-rw-r--r--networkx/utils/tests/test_decorators.py22
1 files changed, 2 insertions, 20 deletions
diff --git a/networkx/utils/tests/test_decorators.py b/networkx/utils/tests/test_decorators.py
index 64fc3e28..eee48fd4 100644
--- a/networkx/utils/tests/test_decorators.py
+++ b/networkx/utils/tests/test_decorators.py
@@ -222,11 +222,6 @@ class TestRandomState:
global np
np = pytest.importorskip("numpy")
- @random_state(1)
- def instantiate_random_state(self, random_state):
- assert isinstance(random_state, np.random.RandomState)
- return random_state.random_sample()
-
@np_random_state(1)
def instantiate_np_random_state(self, random_state):
assert isinstance(random_state, np.random.RandomState)
@@ -243,8 +238,6 @@ class TestRandomState:
np.random.seed(42)
rv = np.random.random_sample()
np.random.seed(42)
- assert rv == self.instantiate_random_state(None)
- np.random.seed(42)
assert rv == self.instantiate_np_random_state(None)
random.seed(42)
@@ -256,8 +249,6 @@ class TestRandomState:
np.random.seed(42)
rv = np.random.random_sample()
np.random.seed(42)
- assert rv == self.instantiate_random_state(np.random)
- np.random.seed(42)
assert rv == self.instantiate_np_random_state(np.random)
np.random.seed(42)
assert rv == self.instantiate_py_random_state(np.random)
@@ -270,10 +261,6 @@ class TestRandomState:
np.random.seed(42)
seed = 1
- rval = self.instantiate_random_state(seed)
- rval_expected = np.random.RandomState(seed).rand()
- assert rval, rval_expected
-
rval = self.instantiate_np_random_state(seed)
rval_expected = np.random.RandomState(seed).rand()
assert rval, rval_expected
@@ -294,10 +281,6 @@ class TestRandomState:
np.random.seed(42)
seed = 1
rng = np.random.RandomState(seed)
- rval = self.instantiate_random_state(rng)
- rval_expected = np.random.RandomState(seed).rand()
- assert rval, rval_expected
-
rval = self.instantiate_np_random_state(seed)
rval_expected = np.random.RandomState(seed).rand()
assert rval, rval_expected
@@ -314,14 +297,13 @@ class TestRandomState:
rv = self.instantiate_py_random_state(rng)
assert rv, random.Random(seed).random()
- pytest.raises(ValueError, self.instantiate_random_state, rng)
pytest.raises(ValueError, self.instantiate_np_random_state, rng)
def test_random_state_string_arg_index():
with pytest.raises(nx.NetworkXError):
- @random_state("a")
+ @np_random_state("a")
def make_random_state(rs):
pass
@@ -341,7 +323,7 @@ def test_py_random_state_string_arg_index():
def test_random_state_invalid_arg_index():
with pytest.raises(nx.NetworkXError):
- @random_state(2)
+ @np_random_state(2)
def make_random_state(rs):
pass