diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-19 16:24:10 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-04-19 16:24:10 -0400 |
commit | 28d93fedc34059dfc09db9912841ae7b13f508a9 (patch) | |
tree | 549df5dccf849ad3d161e9d9af04bf941d7bfa10 /test/coveragetest.py | |
parent | 4d45dc8c234eee1b4bd6da9eac409d588eba9455 (diff) | |
download | python-coveragepy-git-28d93fedc34059dfc09db9912841ae7b13f508a9.tar.gz |
Line length < 80.
Diffstat (limited to 'test/coveragetest.py')
-rw-r--r-- | test/coveragetest.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/coveragetest.py b/test/coveragetest.py index c96e32ca..e76a9910 100644 --- a/test/coveragetest.py +++ b/test/coveragetest.py @@ -14,7 +14,9 @@ import coverage class Tee(object): - """A file-like that writes to all the file-likes it was constructed with.""" + """A file-like that writes to all the file-likes it was constructed with. + + """ def __init__(self, *files): self.files = files @@ -178,7 +180,8 @@ class CoverageTest(unittest.TestCase): else: excName = str(excClass) raise self.failureException( - "Expected to raise %s, didn't get an exception at all" % excName + "Expected to raise %s, didn't get an exception at all" % + excName ) def nice_file(self, *fparts): |