File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -686,7 +686,8 @@ def test_write_to_csv_with_results(self):
686
686
repetitions = 2 )
687
687
tournament .play (filename = self .filename , progress_bar = False )
688
688
self .assertTrue (filecmp .cmp (self .filename ,
689
- "test_outputs/expected_test_tournament.csv" ))
689
+ "test_outputs/expected_test_tournament.csv" ,
690
+ shallow = False ))
690
691
691
692
def test_write_to_csv_without_results (self ):
692
693
tournament = axelrod .Tournament (
@@ -698,7 +699,8 @@ def test_write_to_csv_without_results(self):
698
699
tournament .play (filename = self .filename , progress_bar = False ,
699
700
build_results = False )
700
701
self .assertTrue (filecmp .cmp (self .filename ,
701
- "test_outputs/expected_test_tournament_no_results.csv" ))
702
+ "test_outputs/expected_test_tournament_no_results.csv" ,
703
+ shallow = False ))
702
704
703
705
704
706
class TestProbEndTournament (unittest .TestCase ):
You can’t perform that action at this time.
0 commit comments