Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyfolio/tests/test_timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,14 +338,14 @@ def test_calc_bootstrap(self, true_mean, true_sd, n):
assert_almost_equal(
np.mean(samples),
mean_of_mean,
3,
2,
'Mean of bootstrap does not match theoretical mean of'
'sampling distribution')

assert_almost_equal(
np.std(samples),
sd_of_mean,
3,
2,
'SD of bootstrap does not match theoretical SD of'
'sampling distribution')

Expand Down