summaryrefslogtreecommitdiff
path: root/tests/test_execfile.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-01-31 10:10:47 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-01-31 10:10:47 -0500
commitd02be78c3a0ee3022be56c623bb9bdcad1e9acd4 (patch)
tree1e74153bb4741f6a9e2f1e1f55d2b9960a490bb3 /tests/test_execfile.py
parenta035bde3320a501720ae722dc6b54fe7ff5c8647 (diff)
downloadpython-coveragepy-git-d02be78c3a0ee3022be56c623bb9bdcad1e9acd4.tar.gz
style: fix long lines and avoid backslashesnedbat/unittest2pytest
Diffstat (limited to 'tests/test_execfile.py')
-rw-r--r--tests/test_execfile.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_execfile.py b/tests/test_execfile.py
index 77527478..db78d0f6 100644
--- a/tests/test_execfile.py
+++ b/tests/test_execfile.py
@@ -39,8 +39,7 @@ class RunFileTest(CoverageTest):
assert dunder_file == "try_execfile.py"
# It should have its correct module data.
- assert mod_globs['__doc__'].splitlines()[0] == \
- "Test file for run_python_file."
+ assert mod_globs['__doc__'].splitlines()[0] == "Test file for run_python_file."
assert mod_globs['DATA'] == "xyzzy"
assert mod_globs['FN_VAL'] == "my_fn('fooey')"