Skip to content

Commit 1727293

Browse files
committed
CLN: updated prior from random to flat prior
1 parent 8ea18ca commit 1727293

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/reconstruction/test_sspor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
def test_not_fitted(data_vandermonde):
3232
x = data_vandermonde
3333
model = SSPOR()
34-
prior = np.random.rand(2)
34+
prior = np.full(2, 1)
3535

3636
# Should not be able to call any of these methods before fitting
3737
with pytest.raises(NotFittedError):

0 commit comments

Comments
 (0)