summaryrefslogtreecommitdiff
path: root/numpy/linalg/tests
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/linalg/tests')
-rw-r--r--numpy/linalg/tests/test_linalg.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/linalg/tests/test_linalg.py b/numpy/linalg/tests/test_linalg.py
index 5557ddf12..51f10f27c 100644
--- a/numpy/linalg/tests/test_linalg.py
+++ b/numpy/linalg/tests/test_linalg.py
@@ -1752,9 +1752,6 @@ class TestQR:
def test_stacked_inputs(self):
- curr_state = np.random.get_state()
- np.random.seed(0)
-
normal = np.random.normal
sizes = [(3, 4), (4, 3), (4, 4), (3, 0), (0, 3)]
dts = [np.float32, np.float64, np.complex64]
@@ -1770,7 +1767,6 @@ class TestQR:
self.check_qr_stacked(B)
self.check_qr_stacked(A + 1.j*B)
- np.random.set_state(curr_state)
class TestCholesky:
# TODO: are there no other tests for cholesky?