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
commit8a745e7b1820db4642f45893655207b9ef1acf97 (patch)
treec2883d543f2007f71f13a5a164f6e45bd6fdb25f /test/test_data.py
parent5f6930a60d495c8433b64529ac2ec321d9f1f13b (diff)
downloadpython-coveragepy-8a745e7b1820db4642f45893655207b9ef1acf97.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 5d0d400..5ad2f44 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' ])