Skip to content

Commit 9c84f19

Browse files
committed
Fix meta player tests.
1 parent 979326d commit 9c84f19

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

axelrod/tests/strategies/test_meta.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ class TestMetaMajorityMemoryOne(TestMetaPlayer):
347347
}
348348

349349
def test_strategy(self):
350-
actions = [(C, C), (C, D), (C, C), (C, D), (D, C)]
350+
actions = [(C, C), (C, D), (D, C), (C, D), (D, C)]
351351
self.versus_test(opponent=axl.Alternator(), expected_actions=actions)
352352

353353

@@ -422,7 +422,7 @@ class TestMetaWinnerFiniteMemory(TestMetaPlayer):
422422
}
423423

424424
def test_strategy(self):
425-
actions = [(C, C), (C, D), (C, C), (C, D), (D, C)]
425+
actions = [(C, C), (C, D), (C, C), (D, D), (D, C)]
426426
self.versus_test(opponent=axl.Alternator(), expected_actions=actions)
427427

428428

@@ -568,7 +568,7 @@ class TestNMWEStochastic(TestMetaPlayer):
568568
}
569569

570570
def test_strategy(self):
571-
actions = [(C, C), (C, D), (C, C), (C, D), (D, C)]
571+
actions = [(C, C), (C, D), (D, C), (C, D), (D, C)]
572572
self.versus_test(opponent=axl.Alternator(), expected_actions=actions, seed=20)
573573

574574

0 commit comments

Comments
 (0)