diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-07-25 16:42:25 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-07-25 16:42:25 -0400 |
commit | 5612dabf04499110288df3f589b7b5d6449f489a (patch) | |
tree | d6f27a4e5204455bc397e53c6cf55526d058b090 | |
parent | c5cbb9f6a4b7c40434f964a65ac1c6abd1d4191a (diff) | |
download | python-coveragepy-5612dabf04499110288df3f589b7b5d6449f489a.tar.gz |
Wrap a long line.
-rw-r--r-- | test/test_cmdline.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_cmdline.py b/test/test_cmdline.py index 00a0bfd..aa72b34 100644 --- a/test/test_cmdline.py +++ b/test/test_cmdline.py @@ -511,8 +511,9 @@ class NewCmdLineTest(CmdLineTest): self.cmd_executes("run --source=quux,hi.there,/home/bar foo.py", """\ .coverage(cover_pylib=None, data_suffix=None, timid=None, - branch=None, config_file=True, source=["quux", "hi.there", "/home/bar"], - include=None, omit=None) + branch=None, config_file=True, + source=["quux", "hi.there", "/home/bar"], include=None, + omit=None) .erase() .start() .run_python_file('foo.py', ['foo.py']) |