This commit is contained in:
Kenneth Kehl
2025-08-13 13:13:50 -07:00
parent 94cd812f08
commit af16564fc7

View File

@@ -33,10 +33,9 @@ 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[2]
assert second_reply_to == results[1]
assert another_reply_to == results[1]
assert second_reply_to == results[2]
def test_dao_get_reply_to_by_service_id_does_not_return_archived_reply_tos(