Fix #4093: multiple string literals on a line

This commit is contained in:
Niklas JQ
2018-10-10 19:28:31 +02:00
parent 4b164d947d
commit c14a23d4e4
15 changed files with 18 additions and 18 deletions

View File

@@ -246,7 +246,7 @@ class TestCustomAssertMsg(object):
b = 2
assert A.a == b, (
"A.a appears not to be b\n" "or does not appear to be b\none of those"
"A.a appears not to be b\nor does not appear to be b\none of those"
)
def test_custom_repr(self):

View File

@@ -582,7 +582,7 @@ get on the terminal - we are working on that)::
b = 2
> assert (
A.a == b
), "A.a appears not to be b\n" "or does not appear to be b\none of those"
), "A.a appears not to be b\nor does not appear to be b\none of those"
E AssertionError: A.a appears not to be b
E or does not appear to be b
E one of those