diff --git a/test/test_detail.py b/test/test_detail.py index 45e8a1c..daf0293 100644 --- a/test/test_detail.py +++ b/test/test_detail.py @@ -13,23 +13,20 @@ def test_detail_process(capfd): detail_process("not_existing_id") output, err = capfd.readouterr() - logger.info("stdout_output"+output) - logger.info("stderr_output"+err) + logger.debug("stdout_output"+output) assert "No process found with id: not_existing_id" in output def test_detail_workflow(capfd): detail_workflow("not_existing_id") output, err = capfd.readouterr() - logger.info("stdout_output"+output) - logger.info("stderr_output"+err) + logger.debug("stdout_output"+output) assert "No workflow found with id: not_existing_id" in output def test_detail_host(capfd): detail_host("not_existing_id") output, err = capfd.readouterr() - logger.info("stdout_output"+output) - logger.info("stderr_output"+err) + logger.debug("stdout_output"+output) assert "No host found with id: not_existing_id" in output