Skip to content

Commit

Permalink
Fix Python3 test failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeReclaimers committed Jan 22, 2016
1 parent 43fda6c commit 397a13e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_genome.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def check_self_crossover(genome_type):
assert cnew.ID != c.ID
assert len(cnew.conn_genes) == len(c.conn_genes)
for kold, vold in cnew.conn_genes.items():
print kold, vold
print c.conn_genes
print(kold, vold)
print(c.conn_genes)
assert kold in c.conn_genes
vnew = c.conn_genes[kold]
assert vold.is_same_innov(vnew)
Expand Down

0 comments on commit 397a13e

Please sign in to comment.