Skip to content

Commit 45a0e9a

Browse files
committed
fix: apply rustfmt formatting
1 parent f665ffd commit 45a0e9a

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/path_resolver.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -445,16 +445,14 @@ mod tests {
445445
fn test_parse_local_path_nonexistent() {
446446
// Non-existent paths should now succeed (#57) - the directory does not
447447
// need to exist at catalog creation time (e.g., empty catalogs).
448-
let (url, path) =
449-
parse_object_store_url("/nonexistent/path/that/does/not/exist").unwrap();
448+
let (url, path) = parse_object_store_url("/nonexistent/path/that/does/not/exist").unwrap();
450449
assert_eq!(url, ObjectStoreUrl::parse("file:///").unwrap());
451450
assert_eq!(path, "/nonexistent/path/that/does/not/exist");
452451
}
453452

454453
#[test]
455454
fn test_parse_local_path_nonexistent_with_trailing_slash() {
456-
let (url, path) =
457-
parse_object_store_url("/nonexistent/data/path/").unwrap();
455+
let (url, path) = parse_object_store_url("/nonexistent/data/path/").unwrap();
458456
assert_eq!(url, ObjectStoreUrl::parse("file:///").unwrap());
459457
assert_eq!(path, "/nonexistent/data/path/");
460458
}

0 commit comments

Comments
 (0)