Skip to content

Commit 31eeef3

Browse files
committed
fmt
1 parent 36d928d commit 31eeef3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

iceberg-rust/src/catalog/create.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -569,10 +569,7 @@ mod tests {
569569
.with_location("/test/location")
570570
.create();
571571

572-
assert!(
573-
result.is_err(),
574-
"Table creation without schema should fail"
575-
);
572+
assert!(result.is_err(), "Table creation without schema should fail");
576573
}
577574

578575
#[test]
@@ -745,7 +742,10 @@ mod tests {
745742
.unwrap();
746743

747744
let metadata: Result<TableMetadata, Error> = create_table.try_into();
748-
assert!(metadata.is_ok(), "Conversion to TableMetadata should succeed");
745+
assert!(
746+
metadata.is_ok(),
747+
"Conversion to TableMetadata should succeed"
748+
);
749749

750750
let metadata = metadata.unwrap();
751751
assert_eq!(metadata.location, "/test/location");

0 commit comments

Comments
 (0)