From 8e04b9bf78bbc8f0f6938338e2a6d53f8ff6ae0e Mon Sep 17 00:00:00 2001 From: Thiago da Silva Date: Tue, 28 Jan 2014 06:01:21 -0500 Subject: add mode parameter to mkdir method add mode parameter to mkdir to allow setting the dir access mode when the directory is being created Change-Id: I6f1ed0c8800fb65a30448e6082cf55b8220a06d4 Signed-off-by: Thiago da Silva --- test/functional/libgfapi-python-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional') diff --git a/test/functional/libgfapi-python-tests.py b/test/functional/libgfapi-python-tests.py index 30a1732..d0703df 100644 --- a/test/functional/libgfapi-python-tests.py +++ b/test/functional/libgfapi-python-tests.py @@ -94,7 +94,7 @@ class DirOpsTest(unittest.TestCase): def setUp(self): self.data = loremipsum.get_sentence() self.dir_path = self._testMethodName + "_dir" - self.vol.mkdir(self.dir_path) + self.vol.mkdir(self.dir_path, 0755) self.file_path = self.dir_path + "/" + self.testfile with self.vol.creat( self.file_path, os.O_WRONLY | os.O_EXCL, 0644) as fd: -- cgit