From: Michael Tremer Date: Fri, 14 Oct 2022 14:23:58 +0000 (+0000) Subject: tests: Only print the actual message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c12155f4d4eef66b7ac38d240c1beeccfeee4335;p=pbs.git tests: Only print the actual message Signed-off-by: Michael Tremer --- diff --git a/tests/test.py b/tests/test.py index 2e04f86a..fa08be57 100644 --- a/tests/test.py +++ b/tests/test.py @@ -102,7 +102,7 @@ class TestCase(unittest.IsolatedAsyncioTestCase): async def asyncTearDown(self): # Dump any messages in the message queue for message in self.backend.messages.queue: - print(message) + print(message.message) # Dump a listing of all temporary files with os.scandir(self.testdir.name) as listing: