diff --git a/tests/integration/partial/integration_test_utils.py b/tests/integration/partial/integration_test_utils.py
index 4e383b2d2e5cf7e27e1f88e6c1159d1753e303d4..67d4942f5266873c1dae11f6e04c286500946e00 100644
--- a/tests/integration/partial/integration_test_utils.py
+++ b/tests/integration/partial/integration_test_utils.py
@@ -9,11 +9,11 @@ from zipfile import ZipFile
 class IntegrationTestUtils:
 
     EMAIL_CRED_PATH: str = "../../test_data/test_deployment/envs/Cred_gmail.json"
-    DEFAULT_CONFIG_FILE_PATH: str = "../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/configs/config_EastAfrica_fc_live.json"
-    TEMP_CONFIG_FILE_PATH: str = "../../test_data/test_deployment/regions/EastAfrica/workspace/temp_config.json"
-    EXAMPLE_SURVEY_FILE_PATH: str = "../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/assets/example_survey_run.zip"
-    EXAMPLE_DEPO_FILE_PATH: str = "../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/assets/example_depo_run.zip"
-    EXAMPLE_ENV_SUIT_FILE_PATH: str = "../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/assets/example_env_suit_run.zip"
+    DEFAULT_CONFIG_FILE_PATH: str = "../../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/configs/config_EastAfrica_fc_live.json"
+    TEMP_CONFIG_FILE_PATH: str = "../../../test_data/test_deployment/regions/EastAfrica/workspace/temp_config.json"
+    EXAMPLE_SURVEY_FILE_PATH: str = "../../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/assets/example_survey_run.zip"
+    EXAMPLE_DEPO_FILE_PATH: str = "../../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/assets/example_depo_run.zip"
+    EXAMPLE_ENV_SUIT_FILE_PATH: str = "../../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/assets/example_env_suit_run.zip"
 
     @staticmethod
     def load_json_file(file: str) -> dict:
diff --git a/tests/integration/partial/test_deposition.py b/tests/integration/partial/test_deposition.py
index 9652cb70802a08cf8a5551d65a719651771aaf4b..7c3fa1083f7da2c750455ea24d282f36a56103d4 100644
--- a/tests/integration/partial/test_deposition.py
+++ b/tests/integration/partial/test_deposition.py
@@ -31,7 +31,7 @@ class TestDeposition(unittest.TestCase):
         run_dict['WorkspacePath'] = TestDeposition.TEST_OUT_PATH
         run_dict['ServerName'] = ''  # nothing, as local machine
         full_server_path = os.path.abspath(
-            "../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/assets/")
+            "../../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/assets/")
         run_dict['Deposition']['ServerPathTemplate'] = full_server_path
 
         IntegrationTestUtils.write_json_file(run_dict, IntegrationTestUtils.TEMP_CONFIG_FILE_PATH)
diff --git a/tests/integration/partial/test_env_suit.py b/tests/integration/partial/test_env_suit.py
index 05c13723e96ba660bd48ae067a86321925f8512d..14ca2f724df5ed65ec20e614e7e974e6f3febc87 100644
--- a/tests/integration/partial/test_env_suit.py
+++ b/tests/integration/partial/test_env_suit.py
@@ -34,7 +34,7 @@ class TestEnvSuit(unittest.TestCase):
         run_dict['Environment']['OUTPUT_PATH'] = TestEnvSuit.TEST_OUT_PATH
         run_dict['ServerName'] = ''  # nothing, as local machine
         full_server_path = os.path.abspath(
-            "../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/assets/")
+            "../../../test_data/test_deployment/regions/EastAfrica/resources/coordinator/assets/")
         run_dict['Environment']['ServerPathTemplate'] = full_server_path
 
         IntegrationTestUtils.write_json_file(run_dict, IntegrationTestUtils.TEMP_CONFIG_FILE_PATH)