Skip to content

Commit

Permalink
Fix default value (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdbenito committed Apr 12, 2024
1 parent d691943 commit 7974e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/value/test_stopping.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def test_rank_correlation():
v = ValuationResult.zeros(indices=range(5))
arr = np.arange(5)

done = RankCorrelation(rtol=0.1)
done = RankCorrelation(rtol=0.1, burn_in=10)
for i in range(20):
arr = np.roll(arr, 1)
for j in range(5):
Expand Down

0 comments on commit 7974e47

Please sign in to comment.