2 Commits

Author SHA1 Message Date
a89d78160d Merge pull request 'update id's' (#882) from add-unit-test into main
All checks were successful
CI/CD Pipeline / test (push) Successful in 14m32s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Successful in 7m3s
Reviewed-on: #882
2025-03-09 19:21:41 +01:00
86e5482c6f update id's
Some checks failed
CI/CD Pipeline / test (push) Has been cancelled
CI/CD Pipeline / deploy-staging (push) Has been cancelled
CI/CD Pipeline / deploy-main (push) Has been cancelled
2025-03-09 19:20:56 +01:00
2 changed files with 3 additions and 3 deletions

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,
); );
} }