From 86e5482c6f134c92f1c2bc5b35b9f41ad2c32e3f Mon Sep 17 00:00:00 2001 From: Philipp Hofer Date: Sun, 9 Mar 2025 19:20:56 +0100 Subject: [PATCH] update id's --- src/model/notification.rs | 2 +- src/model/tripdetails.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/model/notification.rs b/src/model/notification.rs index b7dce96..8a49f37 100644 --- a/src/model/notification.rs +++ b/src/model/notification.rs @@ -292,7 +292,7 @@ mod test { assert_eq!(rower_notification.category, "Absage Ausfahrt"); assert_eq!( rower_notification.action_after_reading.as_deref(), - Some("remove_user_trip_with_trip_details_id:3") + Some("remove_user_trip_with_trip_details_id:4") ); // Cox received notification diff --git a/src/model/tripdetails.rs b/src/model/tripdetails.rs index df5204e..ff813cb 100644 --- a/src/model/tripdetails.rs +++ b/src/model/tripdetails.rs @@ -339,7 +339,7 @@ mod test { } ) .await, - 3, + 4, ); assert_eq!( TripDetails::create( @@ -354,7 +354,7 @@ mod test { } ) .await, - 4, + 5, ); }