Skip to content

Commit

Permalink
#30 fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kyuridenamida committed Dec 25, 2018
1 parent 6d8d9ee commit 78779c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_fmtprediction.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test_overall(self):
with open(ANSWER_FILE, 'r') as f:
answer = f.read()

for ans, out in zip(answer.split(), output_text.split()):
for ans, out in zip(answer.split("\n"), output_text.split("\n")):
self.assertEqual(ans, out)

self.assertEqual(len(answer), len(output_text))
Expand Down

0 comments on commit 78779c5

Please sign in to comment.