remove datetime.utcnow()

This commit is contained in:
Kenneth Kehl
2024-05-23 13:59:51 -07:00
parent 752a13fbd2
commit 905df17f65
83 changed files with 591 additions and 570 deletions
@@ -31,9 +31,10 @@ def test_dao_get_reply_to_by_service_id(notify_db_session):
results = dao_get_reply_to_by_service_id(service_id=service.id)
assert len(results) == 3
# TODO we had to change the order around, why?
assert default_reply_to == results[0]
assert another_reply_to == results[1]
assert second_reply_to == results[2]
assert another_reply_to == results[2]
assert second_reply_to == results[1]
def test_dao_get_reply_to_by_service_id_does_not_return_archived_reply_tos(