Skip to content

Commit

Permalink
Uncomment a test.
Browse files Browse the repository at this point in the history
  • Loading branch information
drvinceknight committed Jun 11, 2017
1 parent b3960ca commit ce39975
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions axelrod/tests/unit/test_moran.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ def test_next(self):
self.assertIsInstance(next(mp), MoranProcess)

def test_matchup_indices(self):
# players = axelrod.Cooperator(), axelrod.Defector()
# mp = MoranProcess(players)
# self.assertEqual(mp._matchup_indices(), {(0, 1)})
players = axelrod.Cooperator(), axelrod.Defector()
mp = MoranProcess(players)
self.assertEqual(mp._matchup_indices(), {(0, 1)})

players = axelrod.Cooperator(), axelrod.Defector(), axelrod.TitForTat()
edges = [(0, 1), (2, 0), (1, 2)]
Expand Down

0 comments on commit ce39975

Please sign in to comment.