diff --git a/constants.py b/constants.py
index 3d4d92211e487ded9dc4c873cb52e52e41a7bed4..8c11f22c0178095ff190a9f182258ff415d61f4f 100644
--- a/constants.py
+++ b/constants.py
@@ -6,7 +6,7 @@ class Constant:
 
     """Constants for dataset paths and column names."""
 
-    DATA_PATH = Path('data/tiny')  # -- fill here the dataset size to use
+    DATA_PATH = Path('data/test')  # -- fill here the dataset size to use
 
     # Content
     CONTENT_PATH = DATA_PATH / 'content' # Path to content data
diff --git a/loaders.py b/loaders.py
index d4cc224fd56f45809d239eeec6b820a953246f24..9e0c74c6877a6f4cc0362d8f50fb8c9757735dcb 100644
--- a/loaders.py
+++ b/loaders.py
@@ -45,7 +45,7 @@ def export_evaluation_report(report):
         DataFrame: Merged ratings and items data.
     """
     report_name = f"evaluation_report_{pd.Timestamp.now().strftime('%Y-%m-%d')}.csv"
-    export_path = os.path.join("data", "tiny", "evaluations", report_name)
+    export_path = os.path.join(C.CONTENT_PATH/C.EVALUATION_PATH, report_name)
     report.to_csv(export_path, index=False)
     print("The data has been exported to the evaluation report")
     return report
\ No newline at end of file