Skip to content

Commit 4c36074

Browse files
committed
TEST: covariance_game: Increase atol value
Fix #567
1 parent 0b78e30 commit 4c36074

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quantecon/game_theory/tests/test_random.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_covariance_game():
3030
for a in np.ndindex(*nums_actions):
3131
for i in range(N-1):
3232
payoff_profile = g.payoff_profile_array[a]
33-
assert_allclose(payoff_profile[i], payoff_profile[-1], atol=1e-8)
33+
assert_allclose(payoff_profile[i], payoff_profile[-1], atol=1e-7)
3434

3535
rho = -1 / (N - 1)
3636
g = covariance_game(nums_actions, rho=rho)

0 commit comments

Comments
 (0)