From 6b576474f57ddd42065d20ba566dfcd9ed5d2cad Mon Sep 17 00:00:00 2001 From: Emma Foley Date: Tue, 26 Jun 2018 18:13:35 +0100 Subject: 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 --- yardstick/tests/unit/common/test_utils.py | 1 + 1 file changed, 1 insertion(+) 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 -- cgit 1.2.3-korg