From 23921f40d902fc7e13022b651f64375ea34da848 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Thu, 3 Oct 2013 19:26:03 +0200 Subject: ipatests.test_integration.test_caless: Fix mkdir_recursive call --- ipatests/test_integration/test_caless.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipatests/test_integration') 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) -- cgit