Skip to content

Commit a6ce0b0

Browse files
committed
fmt
1 parent d8a2394 commit a6ce0b0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

crates/catalog/rest/src/catalog.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2104,9 +2104,7 @@ mod tests {
21042104
.create_async()
21052105
.await;
21062106

2107-
let catalog = RestCatalog::new(
2108-
RestCatalogConfig::builder().uri(server.url()).build(),
2109-
);
2107+
let catalog = RestCatalog::new(RestCatalogConfig::builder().uri(server.url()).build());
21102108

21112109
let table1 = {
21122110
let file = File::open(format!(
@@ -2231,9 +2229,7 @@ mod tests {
22312229
.create_async()
22322230
.await;
22332231

2234-
let catalog = RestCatalog::new(
2235-
RestCatalogConfig::builder().uri(server.url()).build(),
2236-
);
2232+
let catalog = RestCatalog::new(RestCatalogConfig::builder().uri(server.url()).build());
22372233

22382234
let table1 = {
22392235
let file = File::open(format!(

0 commit comments

Comments
 (0)