From: Arunpandian J Date: Mon, 21 Mar 2022 10:09:13 +0000 (+0530) Subject: tests: print log info in next line X-Git-Tag: v2.0-rc8~18^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=9ed81d5e9ee9ef817a48631efa01936037d853ff;p=users%2Fsagi%2Fnvme-cli.git tests: print log info in next line printing log info as looks as below nvme_fw_log_test.TestNVMeFwLogCmd.test_fw_log ... Firmware Log for device:nvme0 afi : 0x1 frs1 : xxxxxxx Signed-off-by: Arunpandian J --- diff --git a/tests/nvme_fw_log_test.py b/tests/nvme_fw_log_test.py index a9c9afa5..c07ab845 100644 --- a/tests/nvme_fw_log_test.py +++ b/tests/nvme_fw_log_test.py @@ -63,7 +63,7 @@ class TestNVMeFwLogCmd(TestNVMe): stdout=subprocess.PIPE, encoding='utf-8') fw_log_output = proc.communicate()[0] - print(fw_log_output + "\n") + print("\n" + fw_log_output + "\n") err = proc.wait() return err