Skip to content

Commit

Permalink
Update unittests.py
Browse files Browse the repository at this point in the history
  • Loading branch information
VoronM1522 authored Feb 5, 2025
1 parent 4eb0d5a commit a971ca7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app_python/unittests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
unittest.main()

0 comments on commit a971ca7

Please sign in to comment.