Skip to content

Commit

Permalink
Run rust format
Browse files Browse the repository at this point in the history
  • Loading branch information
OussamaSaoudi-db committed Sep 20, 2024
1 parent 5279ff5 commit f2c15e3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions kernel/src/snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -458,12 +458,12 @@ mod tests {
description: None,
format: Format {
provider: "parquet".into(),
options: HashMap::new()
options: HashMap::new(),
},
schema_string: schema_string.into(),
partition_columns: vec!["modified".into()],
created_time: Some(1713400874275),
configuration: HashMap::new()
configuration: HashMap::new(),
};
assert_eq!(snapshot.metadata(), &expected_metadata);
}
Expand Down Expand Up @@ -563,7 +563,8 @@ mod tests {

#[test_log::test]
fn test_read_table_with_checkpoint() {
let snapshot = get_snapshot_from_path("./tests/data/with_checkpoint_no_last_checkpoint/", None);
let snapshot =
get_snapshot_from_path("./tests/data/with_checkpoint_no_last_checkpoint/", None);

assert_eq!(snapshot.log_segment.checkpoint_files.len(), 1);
assert_eq!(
Expand Down

0 comments on commit f2c15e3

Please sign in to comment.