mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix PEP 8 issue.
This commit is contained in:
parent
31045d58c6
commit
9f56f87770
1 changed files with 2 additions and 1 deletions
|
@ -33,7 +33,8 @@ class ParseSystemctlShowTestCase(unittest.TestCase):
|
||||||
parsed = parse_systemctl_show(lines)
|
parsed = parse_systemctl_show(lines)
|
||||||
self.assertEqual(parsed, {
|
self.assertEqual(parsed, {
|
||||||
'Type': 'simple',
|
'Type': 'simple',
|
||||||
'ExecStart': '{ path=/bin/echo ; argv[]=/bin/echo foo\nbar ; ignore_errors=no ; start_time=[n/a] ; stop_time=[n/a] ; pid=0 ; code=(null) ; status=0/0 }',
|
'ExecStart': '{ path=/bin/echo ; argv[]=/bin/echo foo\n'
|
||||||
|
'bar ; ignore_errors=no ; start_time=[n/a] ; stop_time=[n/a] ; pid=0 ; code=(null) ; status=0/0 }',
|
||||||
'Description': 'blah',
|
'Description': 'blah',
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue