Skip to content

Commit

Permalink
Merge pull request #14762 from rgommers/seed-pickletest
Browse files Browse the repository at this point in the history
TST: add a seed to the pickling test of RBFInterpolator
  • Loading branch information
ev-br committed Sep 21, 2021
2 parents 171e3de + 897c080 commit 627d145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/interpolate/tests/test_rbfinterp.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def test_single_point(self):
def test_pickleable(self):
# Make sure we can pickle and unpickle the interpolant without any
# changes in the behavior.
seq = Halton(1, scramble=False, seed=np.random.RandomState())
seq = Halton(1, scramble=False, seed=np.random.RandomState(2305982309))

x = 3*seq.random(50)
xitp = 3*seq.random(50)
Expand Down

0 comments on commit 627d145

Please sign in to comment.