Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correct expected actions for meta strategy.
  • Loading branch information
drvinceknight committed Sep 9, 2020
commit a2c31d19e8028e820758df62cc074a592548f764
2 changes: 1 addition & 1 deletion axelrod/tests/strategies/test_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ def classifier_test(self, expected_class_classifier=None):
pass

def test_strategy(self):
actions = [(C, C), (C, D), (D, C), (D, D), (D, C)]
actions = [(C, C), (C, D), (C, C), (D, D), (D, C)]
self.versus_test(
opponent=axl.Alternator(), expected_actions=actions, seed=11
)
Expand Down