diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-11 19:44:45 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-11 19:44:45 -0500 |
commit | 801927ac59c64e52cf3503bdff6b144a466180b3 (patch) | |
tree | 11be69aa215b24d207dcdf155add4a5044a25a33 /test/test_oddball.py | |
parent | dd2256488bfcccabb9b27f6af082558f00204224 (diff) | |
download | python-coveragepy-801927ac59c64e52cf3503bdff6b144a466180b3.tar.gz |
No longer see a mysterious exception when not able to run code: AttributeError: 'NoneType' object has no attribute 'isabs'. #153
Diffstat (limited to 'test/test_oddball.py')
-rw-r--r-- | test/test_oddball.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_oddball.py b/test/test_oddball.py index 1a3bd22..a8c243d 100644 --- a/test/test_oddball.py +++ b/test/test_oddball.py @@ -307,6 +307,7 @@ class ExceptionTest(CoverageTest): # Clean the line data and compare to expected results. # The filenames are absolute, so keep just the base. + cov._harvest_data() # private! sshhh... lines = cov.data.line_data() clean_lines = {} for f, llist in lines.items(): |