fix for when a test involving remote qemu boxes is run twice
[tests.git] / system / step_fresh_install.py
index 90afd7d..399e893 100644 (file)
@@ -1,15 +1,11 @@
-import utils
 from TestPlc import TestPlc
 
-# requirement is to implement
-# run* (plc_spec, options)
-
-def run01_uninstall (test_plc,options):
-    return test_plc.uninstall(options)
-def run02_install (test_plc,options):
-    return test_plc.install(options)
-def run03_configure (test_plc,options):
-    return test_plc.configure(options)
-def run04_dump_just_installed (test_plc,options):
+def run01_uninstall (test_plc):
+    return test_plc.uninstall()
+def run02_install (test_plc):
+    return test_plc.install()
+def run03_configure (test_plc):
+    return test_plc.configure()
+def run04_dump_just_installed (test_plc):
     options.dbname='just-installed'
-    return test_plc.db_dump(options)
+    return test_plc.db_dump()