From a971ca79a334607a1f6e2ae1b33007d714fc450b Mon Sep 17 00:00:00 2001 From: VoronM1522 <118175360+VoronM1522@users.noreply.github.com> Date: Thu, 6 Feb 2025 01:27:56 +0300 Subject: [PATCH] Update unittests.py --- app_python/unittests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app_python/unittests.py b/app_python/unittests.py index 7c5784781e..7b95d5514a 100644 --- a/app_python/unittests.py +++ b/app_python/unittests.py @@ -96,9 +96,9 @@ def test_full_response(self): except Exception: time_zone = pytz.timezone("Europe/Moscow") - self.assertEqual(current_time(), f"Current time in {time_zone} is {datetime.now(time_zone).strftime("%H:%M:%S")}") + self.assertEqual(current_time(), f"Current time in {time_zone} is {datetime.now(time_zone).strftime('%H:%M:%S')}") if __name__ == "__main__": - unittest.main() \ No newline at end of file + unittest.main()