Skip to content

Commit

Permalink
log the results
Browse files Browse the repository at this point in the history
Signed-off-by: Tarek <[email protected]>
  • Loading branch information
tareknaser committed Jun 11, 2024
1 parent e932049 commit 58f148a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion fs-storage/src/file_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,14 @@ mod tests {
.modified()
.expect("Failed to get modified time");

assert!(timestamp_after > timestamp_before);
assert!(
timestamp_after > timestamp_before,
"{}",
format!(
"Timestamp before: {:?}, Timestamp after: {:?}",
timestamp_before, timestamp_after
)
);
}

#[test]
Expand Down

0 comments on commit 58f148a

Please sign in to comment.