diff --git a/test/units/modules/system/test_systemd.py b/test/units/modules/system/test_systemd.py index 255db9e68ef..7ffeb969bd7 100644 --- a/test/units/modules/system/test_systemd.py +++ b/test/units/modules/system/test_systemd.py @@ -33,7 +33,8 @@ class ParseSystemctlShowTestCase(unittest.TestCase): parsed = parse_systemctl_show(lines) self.assertEqual(parsed, { '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', })