From 51554c4cabd847fbe777a0f1b0fc8ba4fe6005b8 Mon Sep 17 00:00:00 2001 From: Brett Holman Date: Mon, 9 Sep 2024 10:32:40 -0500 Subject: [PATCH] fixup! test: add verify_clean_boot() calls alongside verify_clean_log() (#5671) --- tests/integration_tests/modules/test_ansible.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests/modules/test_ansible.py b/tests/integration_tests/modules/test_ansible.py index 45c7d714347c..974f86fb4fb1 100644 --- a/tests/integration_tests/modules/test_ansible.py +++ b/tests/integration_tests/modules/test_ansible.py @@ -268,7 +268,7 @@ def _test_ansible_pull_from_local_server(my_client): my_client.restart() log = my_client.read_from_file("/var/log/cloud-init.log") verify_clean_log(log) - verify_clean_log(my_client) + verify_clean_boot(my_client) output_log = my_client.read_from_file("/var/log/cloud-init-output.log") assert "ok=3" in output_log assert "SUCCESS: config-ansible ran successfully" in log