diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2011-08-21 19:25:07 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-08-21 19:25:07 -0400 |
commit | 6b00eb851344fd4c733b51d6402d36ea4158471d (patch) | |
tree | 7f7d62e946996ac5e602da2ea69c1092b92c3e6a /test/test_data.py | |
parent | ba69be6407e27201e7c6b54bc9eaa53e1d97bb5b (diff) | |
download | python-coveragepy-git-6b00eb851344fd4c733b51d6402d36ea4158471d.tar.gz |
Cleanups for lint and older Pythons
Diffstat (limited to 'test/test_data.py')
-rw-r--r-- | test/test_data.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_data.py b/test/test_data.py index 5d0d400f..5ad2f440 100644 --- a/test/test_data.py +++ b/test/test_data.py @@ -143,5 +143,7 @@ class DataTest(CoverageTest): aliases.add("/home/ned/proj/src/", "./") aliases.add(r"c:\ned\test", "./") covdata3.combine_parallel_data(aliases=aliases) - self.assert_summary(covdata3, { './a.py':4, './sub/b.py':2 }, fullpath=True) + self.assert_summary( + covdata3, { './a.py':4, './sub/b.py':2 }, fullpath=True + ) self.assert_measured_files(covdata3, [ './a.py', './sub/b.py' ]) |