From: Yu Watanabe Date: Thu, 19 Feb 2026 16:58:16 +0000 (+0900) Subject: TEST-04-JOURNAL: apply "ruff format" X-Git-Tag: v261-rc1~126^2~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f6b2a27e5956b510be992c6dc0fe52a5d4789833;p=thirdparty%2Fsystemd.git TEST-04-JOURNAL: apply "ruff format" --- diff --git a/test/integration-tests/TEST-04-JOURNAL/TEST-04-JOURNAL.units/logs-filtering-syslog.py b/test/integration-tests/TEST-04-JOURNAL/TEST-04-JOURNAL.units/logs-filtering-syslog.py index e1d3ad7c116..e56348a7a1d 100755 --- a/test/integration-tests/TEST-04-JOURNAL/TEST-04-JOURNAL.units/logs-filtering-syslog.py +++ b/test/integration-tests/TEST-04-JOURNAL/TEST-04-JOURNAL.units/logs-filtering-syslog.py @@ -5,10 +5,7 @@ import subprocess import syslog if __name__ == '__main__': - syslog.openlog(ident="logs-filtering", logoption=syslog.LOG_PID) - syslog.syslog(syslog.LOG_NOTICE, "Logging from the service, and ~more~ foo bar") + syslog.openlog(ident='logs-filtering', logoption=syslog.LOG_PID) + syslog.syslog(syslog.LOG_NOTICE, 'Logging from the service, and ~more~ foo bar') - subprocess.check_output( - ['journalctl', '--sync'], - stdin=subprocess.DEVNULL, - text=True) + subprocess.check_output(['journalctl', '--sync'], stdin=subprocess.DEVNULL, text=True)