Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffgrunewald committed Aug 13, 2024
1 parent b2540a9 commit 5983704
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ async fn select_events(
.into_iter()
.map(|row| SubscriberVerifiedMappingEvent {
subscriber_id: row.get::<Vec<u8>, _>("subscriber_id"),
total_reward_points: row.get::<i32, _>("total_reward_points") as u64,
total_reward_points: row.get::<i64, _>("total_reward_points") as u64,
timestamp: row.get::<DateTime<Utc>, _>("received_timestamp"),
carrier_mapping_key: vec![].into(),
})
Expand Down

0 comments on commit 5983704

Please sign in to comment.