Skip to content

Commit

Permalink
Add another print statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
drvinceknight committed Aug 14, 2018
1 parent 9537c6f commit 23fe3b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion axelrod/tests/unit/test_tournament.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ def test_property_serial_play(self, tournament):
self.assertEqual(results.players, [str(p) for p in tournament.players])

def test_parallel_play(self):
print("foo")
# Test that we get an instance of ResultSet
tournament = axelrod.Tournament(
name=self.test_name,
Expand All @@ -439,14 +440,14 @@ def test_parallel_play(self):
self.assertEqual(len(scores), len(players))

def test_parallel_play_with_writing_to_file(self):
print("bar")
tournament = axelrod.Tournament(
name=self.test_name,
players=self.players,
game=self.game,
turns=axelrod.DEFAULT_TURNS,
repetitions=self.test_repetitions)

print("foo")
results = tournament.play(processes=2, progress_bar=False,
filename=self.filename)
self.assertIsInstance(results, axelrod.ResultSet)
Expand Down

0 comments on commit 23fe3b6

Please sign in to comment.