Additional fixes prompted by double-quote-string-fixer.

Signed-off-by: Brett Randall <javabrett@gmail.com>
This commit is contained in:
Brett Randall 2019-03-18 10:24:46 +11:00
parent f5af95cc9d
commit 7d7c9c0fde
No known key found for this signature in database
GPG key ID: 50EF8B0B7C04B29D
4 changed files with 19 additions and 19 deletions

View file

@ -17,12 +17,12 @@ def test_CalledProcessError_str():
)
assert str(error) == (
"Command: ['git', 'status']\n"
"Return code: 1\n"
"Expected return code: 0\n"
"Output: \n"
" stdout\n"
"Errors: \n"
" stderr\n"
'Return code: 1\n'
'Expected return code: 0\n'
'Output: \n'
' stdout\n'
'Errors: \n'
' stderr\n'
)
@ -32,10 +32,10 @@ def test_CalledProcessError_str_nooutput():
)
assert str(error) == (
"Command: ['git', 'status']\n"
"Return code: 1\n"
"Expected return code: 0\n"
"Output: (none)\n"
"Errors: (none)\n"
'Return code: 1\n'
'Expected return code: 0\n'
'Output: (none)\n'
'Errors: (none)\n'
)