diff --git a/tests/app/dao/test_service_email_reply_to_dao.py b/tests/app/dao/test_service_email_reply_to_dao.py index c6ee1089b..4759d20d2 100644 --- a/tests/app/dao/test_service_email_reply_to_dao.py +++ b/tests/app/dao/test_service_email_reply_to_dao.py @@ -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(