Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/test_20x20.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# be pasted into the github action yml file and here. It should just be in the action
# yml file and read here, with --onlyProcessing appended here.
"""
import unittest
import unittest
import os.path
import datetime
from cell2fire.utils.ParseInputs import make_parser
Expand Down Expand Up @@ -75,7 +75,7 @@ def test_readme_cmd(self):
with open(result_path) as result_file:
with open(baseline_path) as baseline_file:
for line1, line2 in zip(result_file, baseline_file):
if not line1 == line2:
if not line1.strip().rstrip(',') == line2.strip().rstrip(','):
equal = False
print("In File Grids1/ForestGrid08.csv the result is wrong")

Expand Down
Loading