diff --git a/src/model/notification.rs b/src/model/notification.rs index 554f40e..8919cb9 100644 --- a/src/model/notification.rs +++ b/src/model/notification.rs @@ -238,6 +238,7 @@ mod test { notes: event.notes.as_deref(), always_show: event.always_show, is_locked: event.is_locked, + trip_type_id: None, }; event.update(&pool, &cancel_update).await; @@ -267,6 +268,7 @@ mod test { notes: event.notes.as_deref(), always_show: event.always_show, is_locked: event.is_locked, + trip_type_id: None, }; event.update(&pool, &update).await; assert!(Notification::for_user(&pool, &rower).await.is_empty());