Skip to content

Commit

Permalink
Fix a broken test.
Browse files Browse the repository at this point in the history
I believe this occurred as various PRs crossed each other.
  • Loading branch information
drvinceknight committed Jul 30, 2017
1 parent 2d0e2c6 commit e8c6570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion axelrod/tests/strategies/test_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ class TestMetaMajorityLongMemory(TestMetaPlayer):
}

def test_strategy(self):
actions = [(C, C), (C, D), (C, C), (C, D), (D, C)]
actions = [(C, C), (C, D), (D, C), (C, D), (D, C)]
self.versus_test(opponent=axelrod.Alternator(),
expected_actions=actions, seed=0)

Expand Down

0 comments on commit e8c6570

Please sign in to comment.