diff --git a/tests/integration/partial/integration_test_utils.py b/tests/integration/partial/integration_test_utils.py
index b9501846cda50d6601587b61c88837472d1f42fc..43f05a554a61eb59934df89e50aa7e85be1c805c 100644
--- a/tests/integration/partial/integration_test_utils.py
+++ b/tests/integration/partial/integration_test_utils.py
@@ -202,19 +202,19 @@ class IntegrationTestUtils:
 
         import Processor
         reload(Processor)  # reload the class to reset all variables
-        # from Processor import run_Process, set_log_level
-        #
-        # args_dict: dict = {}
-        #
+        from Processor import run_Process, set_log_level
+
+        args_dict: dict = {}
+
         # note, possible to override these values in the kwargs loop below
-        # args_dict['live'] = False
-        # args_dict['noupload'] = True
-        # args_dict['start_date'] = start_date
-        # args_dict['component'] = component
-        # args_dict['config_paths'] = [IntegrationTestUtils.TEMP_CONFIG_FILE_NAME]
-        # args_dict['log_level'] = 'info'
-        # args_dict['clearup'] = True
-        #
+        args_dict['live'] = False
+        args_dict['noupload'] = True
+        args_dict['start_date'] = start_date
+        args_dict['component'] = component
+        args_dict['config_paths'] = [IntegrationTestUtils.TEMP_CONFIG_FILE_NAME]
+        args_dict['log_level'] = 'info'
+        args_dict['clearup'] = True
+
         # for key, value in kwargs.items():
         #     args_dict[key] = value
         #