summaryrefslogtreecommitdiff
path: root/testing/code
diff options
context:
space:
mode:
authorAndras Tim <andras.tim@gmail.com>2017-07-17 01:25:07 +0200
committerAndras Tim <andras.tim@gmail.com>2017-07-17 01:28:16 +0200
commitcf97159009723be555aaa724df18f6f38a417bd2 (patch)
tree9e2acc8da134a0bc81166195f1e464656e6782f6 /testing/code
parent57438f3efe487106a5bc779237c5e4e84bd3f4f0 (diff)
downloadpytest-cf97159009723be555aaa724df18f6f38a417bd2.tar.gz
Fixed E128 flake8 errors
continuation line under-indented for visual indent
Diffstat (limited to 'testing/code')
-rw-r--r--testing/code/test_excinfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/code/test_excinfo.py b/testing/code/test_excinfo.py
index 9e32adf22..7623da319 100644
--- a/testing/code/test_excinfo.py
+++ b/testing/code/test_excinfo.py
@@ -298,7 +298,7 @@ def test_excinfo_exconly():
excinfo = pytest.raises(ValueError, h)
assert excinfo.exconly().startswith('ValueError')
excinfo = pytest.raises(ValueError,
- "raise ValueError('hello\\nworld')")
+ "raise ValueError('hello\\nworld')")
msg = excinfo.exconly(tryshort=True)
assert msg.startswith('ValueError')
assert msg.endswith("world")