From b807353648275d9d1febdd2ace211b4f495a8d43 Mon Sep 17 00:00:00 2001 From: Kat Munson Date: Fri, 24 Jan 2025 12:22:30 -0800 Subject: [PATCH] fix flake8 --- microsoft/testsuites/core/azure_image_standard.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/microsoft/testsuites/core/azure_image_standard.py b/microsoft/testsuites/core/azure_image_standard.py index 81b0bc140d..70b6b66f60 100644 --- a/microsoft/testsuites/core/azure_image_standard.py +++ b/microsoft/testsuites/core/azure_image_standard.py @@ -799,9 +799,9 @@ def verify_repository_installed(self, node: Node) -> None: # noqa: C901 @TestCaseMetadata( description=""" This test will check the serial console is enabled from kernel command line. - + Steps: - 1. Get the kernel command line from /var/log/messages, /var/log/syslog, + 1. Get the kernel command line from /var/log/messages, /var/log/syslog, dmesg, or journalctl output. 2. Check expected setting from kernel command line. 2.1. Expected to see 'console=ttyAMA0' for aarch64. @@ -859,7 +859,7 @@ def verify_serial_console_is_enabled(self, node: Node) -> None: raise LisaException( "Fail to find console enabled line " f"'console [{current_console_device}] enabled' " - f"or '{freebsd_pattern.pattern}' " + "or 'uart0: console (115200,n,8,1)' " "from any log output" )