Fixed test_rest file

This commit is contained in:
alexjanousekGSA
2025-05-14 13:41:23 -04:00
parent 2824056a7d
commit 68aa63945a
3 changed files with 20 additions and 18 deletions

View File

@@ -51,7 +51,7 @@ def get_notification_by_id(notification_id):
notification.to = recipient
notification.normalised_to = recipient
serialized = PublicNotificationSchema().dump(notification)
serialized = notification_with_personalisation_schema.dump(notification)
return jsonify(data={"notification": serialized}), 200