From 94bfbfc4dca944284fd77e2cb5182c63c8f449d7 Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Sun, 21 Jun 2026 18:21:56 +0300 Subject: [PATCH] test_makedirs_and_rmdirs_success is updated wait_exit=True is not required --- tests/test_os_ops_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_os_ops_common.py b/tests/test_os_ops_common.py index 29e2f1ff..3616b750 100644 --- a/tests/test_os_ops_common.py +++ b/tests/test_os_ops_common.py @@ -273,7 +273,7 @@ def test_makedirs_and_rmdirs_success(self, os_ops: OsOperations): RunConditions.skip_if_windows() cmd = "pwd" - pwd = os_ops.exec_command(cmd, wait_exit=True, encoding='utf-8').strip() + pwd = os_ops.exec_command(cmd, encoding='utf-8').strip() path = "{}/test_dir".format(pwd)