diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/option_tests.py | 2 | ||||
-rw-r--r-- | tests/plugin_tests.py | 2 | ||||
-rw-r--r-- | tests/policy_tests.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/option_tests.py b/tests/option_tests.py index 133570f0..56480a58 100644 --- a/tests/option_tests.py +++ b/tests/option_tests.py @@ -7,7 +7,7 @@ # See the LICENSE file in the source distribution for further information. import unittest -from sos.plugins import Plugin +from sos.report.plugins import Plugin from sos.policies import LinuxPolicy, InitSystem diff --git a/tests/plugin_tests.py b/tests/plugin_tests.py index 2b6cdb21..207cb724 100644 --- a/tests/plugin_tests.py +++ b/tests/plugin_tests.py @@ -17,7 +17,7 @@ try: except: from io import StringIO -from sos.plugins import Plugin, regex_findall, _mangle_command +from sos.report.plugins import Plugin, regex_findall, _mangle_command from sos.archive import TarFileArchive from sos.policies import LinuxPolicy, InitSystem import sos.policies diff --git a/tests/policy_tests.py b/tests/policy_tests.py index 71ef5c4a..69cc0529 100644 --- a/tests/policy_tests.py +++ b/tests/policy_tests.py @@ -8,7 +8,7 @@ import unittest from sos.policies import Policy, PackageManager, import_policy -from sos.plugins import Plugin, IndependentPlugin, RedHatPlugin, DebianPlugin +from sos.report.plugins import Plugin, IndependentPlugin, RedHatPlugin, DebianPlugin class FauxPolicy(Policy): distro = "Faux" |