We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e819432 commit cad85f2Copy full SHA for cad85f2
1 file changed
testlib/infra.py
@@ -531,19 +531,20 @@ def run_check(self, stop_time):
531
f'stdout: {stdoutdata.decode("utf-8")}'
532
)
533
534
- msg = stdoutdata.decode("utf-8")
535
self.assertEqual(
536
self.trace.returncode,
537
0,
538
(
539
- stderrdata.decode("utf-8")
540
- if len(msg) == 0
541
- else (
542
- "Error from monitor_dbus_signals: "
543
- + os.linesep
544
545
- + msg
546
- )
+ "Log from monitor_dbus_signals: "
+ + os.linesep
+ + stderrdata.decode("utf-8")
+ + "Error from monitor_dbus_signals: "
547
+ + stdoutdata.decode("utf-8")
548
),
549
550
0 commit comments