Skip to content

Commit

Permalink
Update ANN tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marcharper committed Jan 16, 2017
1 parent 7cc9249 commit c4f62bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions axelrod/tests/unit/test_ann.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def test_rounds(self):
class TestEvolvedANNvsDefector(TestHeadsUp):
def test_rounds(self):
self.versus_test(axelrod.EvolvedANN(), axelrod.Defector(),
[C, C, D, D, D], [D] * 5)
[C, D, D, D, D], [D] * 5)


class TestEvolvedANNvsTFT(TestHeadsUp):
Expand Down Expand Up @@ -113,4 +113,4 @@ def test_rounds(self):
class TestEvolvedANNNoise05vsDefector(TestHeadsUp):
def test_rounds(self):
self.versus_test(axelrod.EvolvedANNNoise05(), axelrod.Defector(),
[C] * 10, [D] * 10)
[C, D, C], [D] * 3)

0 comments on commit c4f62bf

Please sign in to comment.