diff --git a/test/probe/__init__.py b/test/probe/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/test/probe/test_account_failures.py b/test/probe/test_account_failures.py index 10eba803bc..5ad2f965cb 100755 --- a/test/probe/test_account_failures.py +++ b/test/probe/test_account_failures.py @@ -21,7 +21,7 @@ from subprocess import Popen from time import sleep from swift.common import client -from common import get_to_final_state, kill_pids, reset_environment +from test.probe.common import get_to_final_state, kill_pids, reset_environment class TestAccountFailures(unittest.TestCase): diff --git a/test/probe/test_container_failures.py b/test/probe/test_container_failures.py index 9c497ca88b..b24e1bc169 100755 --- a/test/probe/test_container_failures.py +++ b/test/probe/test_container_failures.py @@ -23,7 +23,7 @@ from uuid import uuid4 from swift.common import client -from common import get_to_final_state, kill_pids, reset_environment +from test.probe.common import get_to_final_state, kill_pids, reset_environment class TestContainerFailures(unittest.TestCase): diff --git a/test/probe/test_object_async_update.py b/test/probe/test_object_async_update.py index a5d5852c68..7db3a75fca 100755 --- a/test/probe/test_object_async_update.py +++ b/test/probe/test_object_async_update.py @@ -23,7 +23,7 @@ from uuid import uuid4 from swift.common import client, direct_client -from common import kill_pids, reset_environment +from test.probe.common import kill_pids, reset_environment class TestObjectAsyncUpdate(unittest.TestCase): diff --git a/test/probe/test_object_handoff.py b/test/probe/test_object_handoff.py index 006f0d3a1e..7086c11de8 100755 --- a/test/probe/test_object_handoff.py +++ b/test/probe/test_object_handoff.py @@ -23,7 +23,7 @@ from uuid import uuid4 from swift.common import client, direct_client -from common import kill_pids, reset_environment +from test.probe.common import kill_pids, reset_environment class TestObjectHandoff(unittest.TestCase): diff --git a/test/probe/test_running_with_each_type_down.py b/test/probe/test_running_with_each_type_down.py index 7f2352d6ce..46fe1c5851 100755 --- a/test/probe/test_running_with_each_type_down.py +++ b/test/probe/test_running_with_each_type_down.py @@ -22,7 +22,7 @@ from time import sleep from swift.common import client -from common import get_to_final_state, kill_pids, reset_environment +from test.probe.common import get_to_final_state, kill_pids, reset_environment class TestRunningWithEachTypeDown(unittest.TestCase):