From f76b4314b356e7a796905554e2ac94aad5dfded9 Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Fri, 21 Feb 2025 21:12:15 +0300 Subject: [PATCH] TestRemoteOperations::test_makedirs_and_rmdirs_success is updated The new checks are added. --- tests/test_remote.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_remote.py b/tests/test_remote.py index 3e6b79dd..4330b92f 100755 --- a/tests/test_remote.py +++ b/tests/test_remote.py @@ -83,10 +83,12 @@ def test_makedirs_and_rmdirs_success(self): # Test makedirs self.operations.makedirs(path) + assert os.path.exists(path) assert self.operations.path_exists(path) # Test rmdirs self.operations.rmdirs(path) + assert not os.path.exists(path) assert not self.operations.path_exists(path) def test_makedirs_and_rmdirs_failure(self):