From d2b4acb17e34c0346cb97e70b5bcd733fc5bd16d Mon Sep 17 00:00:00 2001 From: kpoulakakis <kpoulakakis@ubitech.eu> Date: Tue, 4 Jun 2024 12:53:48 +0300 Subject: [PATCH] Correct the boolean operator True --- src/automation/tests/test_unitary_emulated.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/automation/tests/test_unitary_emulated.py b/src/automation/tests/test_unitary_emulated.py index cc2fb8ebc..24f18a2f4 100644 --- a/src/automation/tests/test_unitary_emulated.py +++ b/src/automation/tests/test_unitary_emulated.py @@ -19,4 +19,4 @@ LOGGER = logging.getLogger(__name__) def test_device_emulated_add_error_cases(): LOGGER.info("Start Tests") LOGGER.info("Second log Tests") - assert true \ No newline at end of file + assert True \ No newline at end of file -- GitLab