From 7680b7d2abfe6304e6b9d30581d5bf94452caac2 Mon Sep 17 00:00:00 2001 From: nnandigam Date: Wed, 27 Dec 2023 21:33:19 -0800 Subject: [PATCH] log --- tests_e2e/tests/scripts/agent_update-self_update_check.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests_e2e/tests/scripts/agent_update-self_update_check.py b/tests_e2e/tests/scripts/agent_update-self_update_check.py index 4f62ae9a9b..47cc2e8526 100755 --- a/tests_e2e/tests/scripts/agent_update-self_update_check.py +++ b/tests_e2e/tests/scripts/agent_update-self_update_check.py @@ -16,6 +16,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# Script verifies agent update was done by test agent +# import argparse import re @@ -44,7 +46,7 @@ def verify_agent_update_from_log(latest_version, current_version) -> bool: return False -def main(): +def main() -> None: parser = argparse.ArgumentParser() parser.add_argument('-l', '--latest-version', required=True) parser.add_argument('-c', '--current-version', required=True)