File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments