diff options
author | czgdp1807 <gdp.1807@gmail.com> | 2021-06-05 12:17:32 +0530 |
---|---|---|
committer | czgdp1807 <gdp.1807@gmail.com> | 2021-06-05 12:17:32 +0530 |
commit | 4628497abbcc305b72706109d885d1bfd82c6ea8 (patch) | |
tree | 0b3a9f8ba3a3376cb083b762fc4859be06c211be /numpy/linalg/tests | |
parent | 89ff2af6e13f88b9e6f5beb9c11ab8d579b63f1c (diff) | |
download | numpy-4628497abbcc305b72706109d885d1bfd82c6ea8.tar.gz |
removed trailing white spaces
Diffstat (limited to 'numpy/linalg/tests')
-rw-r--r-- | numpy/linalg/tests/test_linalg.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/linalg/tests/test_linalg.py b/numpy/linalg/tests/test_linalg.py index 6e03f8b9b..5557ddf12 100644 --- a/numpy/linalg/tests/test_linalg.py +++ b/numpy/linalg/tests/test_linalg.py @@ -1711,7 +1711,7 @@ class TestQR: self.check_qr(m1) self.check_qr(m2) self.check_qr(m2.T) - + def check_qr_stacked(self, a): # This test expects the argument `a` to be an ndarray or # a subclass of an ndarray of inexact type. @@ -1768,9 +1768,9 @@ class TestQR: B = np.asarray([[b1, b2], [b3, b4]], dtype=dt) self.check_qr_stacked(A) self.check_qr_stacked(B) - self.check_qr_stacked(A + 1.j*B) + self.check_qr_stacked(A + 1.j*B) - np.random.set_state(curr_state) + np.random.set_state(curr_state) class TestCholesky: # TODO: are there no other tests for cholesky? |