diff options
-rw-r--r-- | sdnvpn/test/functest/run_sdnvpn_tests.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sdnvpn/test/functest/run_sdnvpn_tests.py b/sdnvpn/test/functest/run_sdnvpn_tests.py index 6fe7558..140256d 100644 --- a/sdnvpn/test/functest/run_sdnvpn_tests.py +++ b/sdnvpn/test/functest/run_sdnvpn_tests.py @@ -59,8 +59,7 @@ class SdnvpnFunctest(testcase.TestCase): (test_name, test_descr)) self.__logger.info(title) self.__logger.info("%s\n" % ("=" * len(title))) - module = 'sdnvpn.test.functest.' + test_name - t = importlib.import_module(module, package=None) + t = importlib.import_module(test_name, package=None) try: result = t.main() except Exception as ex: |