summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/run_cmd.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/run_cmd.py b/tests/run_cmd.py
index d6d4cc7..0d5e1ff 100644
--- a/tests/run_cmd.py
+++ b/tests/run_cmd.py
@@ -17,11 +17,13 @@ from clufter.command_manager import CommandManager
class Main(unittest.TestCase):
def testCcs2PcsNeedle(self):
testfile = join(dirname(__file__), 'filled.conf')
+ testcib = join(dirname(__file__), '.testcib.xml')
+ testcoro = join(dirname(__file__), '.testcorosync.conf')
- files = {
- "cib": '/tmp/cibcib',
- "coro": '/tmp/corocoro',
- }
+ files = dict(
+ cib=testcib,
+ coro=testcoro,
+ )
clufter_args = type("cluster_args", (object, ), dict(
input=testfile,
nocheck=True,