Skip to content

Commit

Permalink
TST: Fix tailing test on 32bit platofrms
Browse files Browse the repository at this point in the history
Relax check for 32 bit platforms
  • Loading branch information
bashtage authored and mattip committed May 20, 2019
1 parent 018faf7 commit 75025d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _randomgen/randomgen/tests/test_against_numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def _is_state_common_legacy(self):
assert (state[1] == state2['state']['key']).all()
assert (state[2] == state2['state']['pos'])
assert (state[3] == state2['has_gauss'])
assert (state[4] == state2['gauss'])
assert_allclose(state[4], state2['gauss'], atol=1e-10)

def test_common_seed(self):
self.rg.seed(1234)
Expand Down

0 comments on commit 75025d9

Please sign in to comment.