From 2286acc6f22dde258c1a985e4c3292feb4d44694 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Wed, 28 Aug 2013 15:44:52 +0200 Subject: [PATCH] fix some more tests for the next release Signed-off-by: Nico Schottelius --- cdist/test/code/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cdist/test/code/__init__.py b/cdist/test/code/__init__.py index a518bd74..796e8a51 100644 --- a/cdist/test/code/__init__.py +++ b/cdist/test/code/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # 2011 Steven Armstrong (steven-cdist at armstrong.cc) -# 2012 Nico Schottelius (nico-cdist at schottelius.org) +# 2012-2013 Nico Schottelius (nico-cdist at schottelius.org) # # This file is part of cdist. # @@ -54,9 +54,9 @@ class CodeTestCase(test.CdistTestCase): self.remote = remote.Remote( target_host=self.target_host, remote_exec=remote_exec, - remote_copy=remote_copy) - self.remote.base_path = self.remote_base_path - tself.remote.create_files_dirs() + remote_copy=remote_copy, + base_path=self.remote_dir) + self.remote.create_files_dirs() self.code = code.Code(self.target_host, self.local, self.remote)