simple-nx-auth #924

Merged
philipp merged 31 commits from simple-nx-auth into main 2025-04-18 17:44:55 +02:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 2368f03761 - Show all commits

View File

@ -292,7 +292,7 @@ mod test {
assert_eq!(rower_notification.category, "Absage Ausfahrt"); assert_eq!(rower_notification.category, "Absage Ausfahrt");
assert_eq!( assert_eq!(
rower_notification.action_after_reading.as_deref(), 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 // Cox received notification

View File

@ -339,7 +339,7 @@ mod test {
} }
) )
.await, .await,
3, 4,
); );
assert_eq!( assert_eq!(
TripDetails::create( TripDetails::create(
@ -354,7 +354,7 @@ mod test {
} }
) )
.await, .await,
4, 5,
); );
} }