From 2957788ab6127c03860ceda497598046282b068f Mon Sep 17 00:00:00 2001 From: Carolina Lopes <116589288+ccruzagralopes@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:10:42 -0300 Subject: [PATCH] Update .version_information (#77) * Update .version_information * Fix typos * Fix typo --- .version_information | 2 +- .../python_testing/models/rpc_client/test_harness_client.py | 2 +- .../sdk_tests/support/python_testing/models/test_case.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.version_information b/.version_information index ad27a13..e6efee4 100644 --- a/.version_information +++ b/.version_information @@ -1 +1 @@ -2.10-beta3+spring2024 +main - dev diff --git a/test_collections/matter/sdk_tests/support/python_testing/models/rpc_client/test_harness_client.py b/test_collections/matter/sdk_tests/support/python_testing/models/rpc_client/test_harness_client.py index 0d807f6..fb6fa7e 100644 --- a/test_collections/matter/sdk_tests/support/python_testing/models/rpc_client/test_harness_client.py +++ b/test_collections/matter/sdk_tests/support/python_testing/models/rpc_client/test_harness_client.py @@ -42,7 +42,7 @@ def main() -> None: test_args = sys.argv[2:] config = parse_matter_test_args(test_args) - # This is a temporaly workaround since Python Test are generating a + # This is a temporary workaround since Python Test are generating a # big amount of log with open("/root/python_testing/test_output.txt", "w") as f: with redirect_stdout(f): diff --git a/test_collections/matter/sdk_tests/support/python_testing/models/test_case.py b/test_collections/matter/sdk_tests/support/python_testing/models/test_case.py index bbd1aa5..0d93b44 100644 --- a/test_collections/matter/sdk_tests/support/python_testing/models/test_case.py +++ b/test_collections/matter/sdk_tests/support/python_testing/models/test_case.py @@ -221,7 +221,7 @@ async def cleanup(self) -> None: logger.info("Test Cleanup") def handle_logs_temp(self) -> None: - # This is a temporaly workaround since Python Test are generating a + # This is a temporary workaround since Python Test are generating a # big amount of log with open( "/app/backend/test_collections/matter/sdk_tests/sdk_checkout/" @@ -289,7 +289,7 @@ async def execute(self) -> None: logger.info("---- Start of Python test logs ----") self.handle_logs_temp() - # Uncoment line bellow when the workaround has a definitive solution + # Uncomment line bellow when the workaround has a definitive solution # handle_logs(cast(Generator, exec_result.output), logger) logger.info("---- End of Python test logs ----")