diff --git a/tests/unit/modules/hashutil_test.py b/tests/unit/modules/hashutil_test.py index b253e3af88..d00c43ae97 100644 --- a/tests/unit/modules/hashutil_test.py +++ b/tests/unit/modules/hashutil_test.py @@ -1,7 +1,12 @@ # coding: utf-8 -import salt.loader -from tests.integration import ModuleCase +# Import salt testing libs +from salttesting.case import ModuleCase +from salttesting.helpers import ensure_in_syspath +ensure_in_syspath('../../') + +# Import Salt libs +import salt.loader class HashutilTestCase(ModuleCase):