Skip to content

Commit

Permalink
TEST: Make conservative the test failing on Travis CI
Browse files Browse the repository at this point in the history
but passing locally
  • Loading branch information
oyamad committed Jun 5, 2018
1 parent 0404f1a commit be79cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantecon/game_theory/tests/test_normal_form_game.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def test_player_corner_cases():
eq_(player.is_best_response(action, [1/2, 1/2], tol=e), True)
eq_(player.is_best_response(action, [1/2, 1/2], tol=e/2), False)
for method in LP_METHODS:
eq_(player.is_dominated(action, tol=e, method=method), False)
eq_(player.is_dominated(action, tol=2*e, method=method), False)
eq_(player.dominated_actions(tol=e, method=method), [])

eq_(player.is_dominated(action, tol=e/2, method=method), True)
Expand Down

0 comments on commit be79cf4

Please sign in to comment.