From ceadc2a4fe479fd2c04be2949bd75886a2475cc1 Mon Sep 17 00:00:00 2001 From: Natalie Perlin Date: Wed, 30 Oct 2024 01:21:03 +0000 Subject: [PATCH] update create_log.py --- tests-dev/create_log.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests-dev/create_log.py b/tests-dev/create_log.py index 3a1085d5dc..0ddc11afe7 100644 --- a/tests-dev/create_log.py +++ b/tests-dev/create_log.py @@ -149,10 +149,6 @@ def finish_log(): start_time = datetime.strptime(clean_START_TIME, "%Y-%m-%d %H:%M:%S") clean_END_TIME= TEST_END_TIME.split('.')[0] end_time = datetime.strptime(clean_END_TIME, "%Y-%m-%d %H:%M:%S") - print(TEST_START_TIME) - print(clean_START_TIME) - print(TEST_END_TIME) - print(clean_END_TIME) hours, remainder= divmod((end_time - start_time).total_seconds(), 3600) minutes, seconds= divmod(remainder, 60)