Merge "Fix import error when running on OSX"
diff --git a/TestON/core/teston.py b/TestON/core/teston.py
index 5bc702b..ae6fc4e 100644
--- a/TestON/core/teston.py
+++ b/TestON/core/teston.py
@@ -179,7 +179,7 @@
options = driver_options)
if not connect_result:
- self.log.error("Exiting form the test execution because the connecting to the "+component+" component failed.")
+ self.log.error("Exiting from the test execution because the connecting to the "+component+" component failed.")
self.exit()
vars(self)[component] = driverObject
@@ -441,6 +441,7 @@
self.exit()
result = re.sub("(.*)drivers","",result)
+ result = re.sub("\/\/","/",result)
result = re.sub("\.py","",result)
result = re.sub("\.pyc","",result)
result = re.sub("\/",".",result)