We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 676c84c commit 4f3bb29Copy full SHA for 4f3bb29
1 file changed
pytests/test_sparsity.py
@@ -100,8 +100,8 @@ def test_IRLS_data(par):
100
Gop = MatrixMult(G, dtype=par["dtype"])
101
x = np.ones(par["nx"]) + par["imag"] * np.ones(par["nx"])
102
x0 = (
103
- np.random.normal(0, 10, par["nx"])
104
- + par["imag"] * np.random.normal(0, 10, par["nx"])
+ np.random.normal(0, 1, par["nx"])
+ + par["imag"] * np.random.normal(0, 1, par["nx"])
105
if par["x0"]
106
else None
107
)
@@ -139,8 +139,8 @@ def test_IRLS_datamodel(par):
139
x[3] = 1
140
x[par["nx"] - 4] = -1
141
142
143
144
145
146
0 commit comments