diff options
author | Emma Foley <emma.l.foley@intel.com> | 2018-06-26 18:13:35 +0100 |
---|---|---|
committer | Emma Foley <emma.l.foley@intel.com> | 2018-06-26 18:18:39 +0100 |
commit | 6b576474f57ddd42065d20ba566dfcd9ed5d2cad (patch) | |
tree | 4c0f47a29748a3ef23c124067a6515fc8a52243c | |
parent | 43b447c3fc3be4947545d1e16098424bef7be171 (diff) |
Resolve NameError in test_utils.py
The import of the yardstick module was removed from test_util.py, which relied
on this module location for a file name in
test_import_modules_from_package_no_mod and test_import_modules_from_package.
JIRA: YARDSTICK-1258
Change-Id: I754dbadfb8d788236f354e9a0c1a61ad6c4abf70
Signed-off-by: Emma Foley <emma.l.foley@intel.com>
-rw-r--r-- | yardstick/tests/unit/common/test_utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yardstick/tests/unit/common/test_utils.py b/yardstick/tests/unit/common/test_utils.py index 6e7a0bfc4..6247afd18 100644 --- a/yardstick/tests/unit/common/test_utils.py +++ b/yardstick/tests/unit/common/test_utils.py @@ -19,6 +19,7 @@ from six.moves import configparser import time import unittest +import yardstick from yardstick import ssh from yardstick.common import constants from yardstick.common import utils |