Skip to content

Commit 89e1b4a

Browse files
committed
TEST: Make conservative the test failing on Travis CI
but passing locally
1 parent 0404f1a commit 89e1b4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quantecon/game_theory/tests/test_normal_form_game.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ def test_player_corner_cases():
144144
eq_(player.is_best_response(action, [1/2, 1/2], tol=e), True)
145145
eq_(player.is_best_response(action, [1/2, 1/2], tol=e/2), False)
146146
for method in LP_METHODS:
147-
eq_(player.is_dominated(action, tol=e, method=method), False)
148-
eq_(player.dominated_actions(tol=e, method=method), [])
147+
eq_(player.is_dominated(action, tol=2*e, method=method), False)
148+
eq_(player.dominated_actions(tol=2*e, method=method), [])
149149

150150
eq_(player.is_dominated(action, tol=e/2, method=method), True)
151151
eq_(player.dominated_actions(tol=e/2, method=method), [action])

0 commit comments

Comments
 (0)