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/unit/gluster/test_gfapi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/unit') diff --git a/test/unit/gluster/test_gfapi.py b/test/unit/gluster/test_gfapi.py index 07c4e92..6270148 100644 --- a/test/unit/gluster/test_gfapi.py +++ b/test/unit/gluster/test_gfapi.py @@ -265,7 +265,7 @@ class TestVolume(unittest.TestCase): with patch("gluster.gfapi.api.glfs_mkdir", mock_glfs_mkdir): vol = gfapi.Volume("localhost", "test") - ret = vol.mkdir("testdir") + ret = vol.mkdir("testdir", 0775) self.assertEquals(ret, 0) def test_mkdir_fail_exception(self): @@ -274,7 +274,7 @@ class TestVolume(unittest.TestCase): with patch("gluster.gfapi.api.glfs_mkdir", mock_glfs_mkdir): vol = gfapi.Volume("localhost", "test") - self.assertRaises(OSError, vol.mkdir, "testdir") + self.assertRaises(OSError, vol.mkdir, "testdir", 0775) def test_open_success(self): mock_glfs_open = Mock() -- cgit