summaryrefslogtreecommitdiffstats
path: root/ipatests
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-10-03 19:26:03 +0200
committerPetr Viktorin <pviktori@redhat.com>2013-10-03 19:50:35 +0200
commit23921f40d902fc7e13022b651f64375ea34da848 (patch)
tree220054e86fe47b1fab8a52b918f26244c2fc1f8f /ipatests
parent3864760c5283e9796085faed44b597479df5659f (diff)
downloadfreeipa.git-23921f40d902fc7e13022b651f64375ea34da848.tar.gz
freeipa.git-23921f40d902fc7e13022b651f64375ea34da848.tar.xz
freeipa.git-23921f40d902fc7e13022b651f64375ea34da848.zip
ipatests.test_integration.test_caless: Fix mkdir_recursive call
Diffstat (limited to 'ipatests')
-rw-r--r--ipatests/test_integration/test_caless.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipatests/test_integration/test_caless.py b/ipatests/test_integration/test_caless.py
index 12faf296..452ea9e2 100644
--- a/ipatests/test_integration/test_caless.py
+++ b/ipatests/test_integration/test_caless.py
@@ -100,7 +100,7 @@ class CALessBase(IntegrationTest):
# Copy CRLs over
base = os.path.join(cls.cert_dir, 'nssdb')
- host.mkdir_recursive(cls.crl_path)
+ host.transport.mkdir_recursive(cls.crl_path)
for source in glob.glob(os.path.join(base, '*.crl')):
dest = os.path.join(cls.crl_path, os.path.basename(source))
host.transport.put_file(source, dest)