Skip to content

Commit

Permalink
printing for debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldjeffrey committed Feb 7, 2025
1 parent 3f79329 commit b828bd3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mobile_verifier/src/heartbeats/last_location.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,11 +252,11 @@ mod tests {
cache.get(&hotspot_one, now).await?,
"Invalid timestamp current"
);
assert_eq!(
Some(test_last_location(now, limit_timestamp)),
cache.get(&hotspot_two, now).await?,
"Limit timestamp current"
);
let expect = Some(test_last_location(now, limit_timestamp));
let cached = cache.get(&hotspot_two, now).await?;
println!("expect: {:?}", expect);
println!("cached: {:?}", cached);
assert_eq!(expect, cached, "Limit timestamp current");
assert_eq!(
Some(test_last_location(now, good_timestamp)),
cache.get(&hotspot_three, now).await?,
Expand Down

0 comments on commit b828bd3

Please sign in to comment.