Skip to content

Commit

Permalink
WIP: make test a little more generous
Browse files Browse the repository at this point in the history
  • Loading branch information
riddell-stan committed Apr 8, 2019
1 parent bc5b99b commit 97418b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_linear_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ async def main():
assert resp.status_code == 200
fit_bytes = resp.content
beta_0 = helpers.extract_draws(fit_bytes, "beta.1")
assert all(np.abs(beta_0 - np.array(beta_true)[0]) < 0.05)
assert all(np.abs(beta_0 - np.array(beta_true)[0]) < 0.1)

asyncio.get_event_loop().run_until_complete(main())

0 comments on commit 97418b4

Please sign in to comment.