diff --git a/actions/privilegedactions_test.py b/actions/privilegedactions_test.py index 2b90b821a..ab0fd02d9 100644 --- a/actions/privilegedactions_test.py +++ b/actions/privilegedactions_test.py @@ -2,7 +2,7 @@ # -*- mode: python; mode: auto-fill; fill-column: 80 -*- import sys -from actions.privilegedactions import privilegedaction_run +from privilegedactions import privilegedaction_run import unittest class TestPrivileged(unittest.TestCase): diff --git a/tests/test_privelegedactions.py b/tests/test_privelegedactions.py index dc8cb0e72..0cab21b96 100644 --- a/tests/test_privelegedactions.py +++ b/tests/test_privelegedactions.py @@ -2,7 +2,7 @@ # -*- mode: python; mode: auto-fill; fill-column: 80 -*- import sys -from actions.privilegedactions import privilegedaction_run +from privilegedactions import privilegedaction_run import unittest class TestPrivileged(unittest.TestCase): diff --git a/tests/test_user_store.py b/tests/test_user_store.py index e6a3e8433..abad5f0e0 100644 --- a/tests/test_user_store.py +++ b/tests/test_user_store.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- mode: python; mode: auto-fill; fill-column: 80 -*- -import user_store +import modules.user_store from logger import Logger import cfg import unittest @@ -83,4 +83,4 @@ class UserStore(unittest.TestCase): return user if __name__ == "__main__": - unittest.main() \ No newline at end of file + unittest.main()