Closed tcj closed 1 month ago
Original fix by @pieterbartsmit
before fix:
% python3 -m unittest -vv tests/test_loc.py [...] FAIL: testOutputLocationIsValidFloat (tests.test_loc.LocationParsingTest.testOutputLocationIsValidFloat) ---------------------------------------------------------------------- Traceback (most recent call last): File "/Users/tcj/src/spotter-sd-parser/tests/test_loc.py", line 33, in testOutputLocationIsValidFloat self.assertFalse(firstline.rstrip().endswith(', 37.00000000,-122.00000000')) AssertionError: True is not false ---------------------------------------------------------------------- Ran 3 tests in 0.192s FAILED (failures=1, skipped=2)
after fix:
% python3 -m unittest -vv tests/test_loc.py [...] Ran 3 tests in 0.205s OK
Original fix by @pieterbartsmit
before fix:
after fix: