tests: Don't use log before it's created

Signed-off-by: Robert Baldyga <robert.baldyga@intel.com>
This commit is contained in:
Robert Baldyga 2019-11-27 13:10:01 +01:00
parent 8dff1defca
commit 913be2c7b8

View File

@ -26,8 +26,7 @@ sys.path.append(plugins_dir)
try:
from test_wrapper import plugin as test_wrapper
except ImportError as e:
TestRun.LOGGER.info(str(e))
pass
print(e)
class OpencasPlugin(metaclass=Singleton):