summaryrefslogtreecommitdiff
path: root/test/test_data.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-08-21 19:25:07 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-08-21 19:25:07 -0400
commit6b00eb851344fd4c733b51d6402d36ea4158471d (patch)
tree7f7d62e946996ac5e602da2ea69c1092b92c3e6a /test/test_data.py
parentba69be6407e27201e7c6b54bc9eaa53e1d97bb5b (diff)
downloadpython-coveragepy-git-6b00eb851344fd4c733b51d6402d36ea4158471d.tar.gz
Cleanups for lint and older Pythons
Diffstat (limited to 'test/test_data.py')
-rw-r--r--test/test_data.py4
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' ])