Index: shared/scripts/configuration/utility.py =================================================================== diff -u -r29c20da01a9b6e69b3cc28efa76ddfe24192145e -r17d7bf4c3727d58d5ba7f4fb05613b9bf804188a --- shared/scripts/configuration/utility.py (.../utility.py) (revision 29c20da01a9b6e69b3cc28efa76ddfe24192145e) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision 17d7bf4c3727d58d5ba7f4fb05613b9bf804188a) @@ -121,7 +121,7 @@ -def get_extracted_file(): +def get_extracted_file_from_post_treatment(): """ This function is the handler for getting file from log folder. Index: tst_post_treatment/test.py =================================================================== diff -u -r29c20da01a9b6e69b3cc28efa76ddfe24192145e -r17d7bf4c3727d58d5ba7f4fb05613b9bf804188a --- tst_post_treatment/test.py (.../test.py) (revision 29c20da01a9b6e69b3cc28efa76ddfe24192145e) +++ tst_post_treatment/test.py (.../test.py) (revision 17d7bf4c3727d58d5ba7f4fb05613b9bf804188a) @@ -500,7 +500,7 @@ """ count = 0 try: - log_location = str(utility.get_extracted_file()) + log_location = str(utility.get_extracted_file_from_post_treatment()) with open(log_location, 'r') as csv_file: try: for row in list(csv.reader(csv_file)): @@ -526,7 +526,7 @@ @returns message value and message unit """ try: - log_location = str(utility.get_extracted_file()) + log_location = str(utility.get_extracted_file_from_post_treatment()) with open(log_location, 'r') as csv_file: try: