Closed randallpittman closed 9 months ago
When I ran the tests on my Linux machine I ran into the following errors:
test_loc.py:21
displacement.csv
test_sst.py:25
self.outputfn
.CSV
This PR fixes these two errors.
When I ran the tests on my Linux machine I ran into the following errors:
test_loc.py:21
:displacement.csv
existed (from a previous test case) so the assertion failed.test_sst.py:25
: The assertion failed because the actual created file had a lowercase extension andself.outputfn
had an uppercase (.CSV
) extension.This PR fixes these two errors.