We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36d928d commit 31eeef3Copy full SHA for 31eeef3
iceberg-rust/src/catalog/create.rs
@@ -569,10 +569,7 @@ mod tests {
569
.with_location("/test/location")
570
.create();
571
572
- assert!(
573
- result.is_err(),
574
- "Table creation without schema should fail"
575
- );
+ assert!(result.is_err(), "Table creation without schema should fail");
576
}
577
578
#[test]
@@ -745,7 +742,10 @@ mod tests {
745
742
.unwrap();
746
743
747
744
let metadata: Result<TableMetadata, Error> = create_table.try_into();
748
- assert!(metadata.is_ok(), "Conversion to TableMetadata should succeed");
+ assert!(
+ metadata.is_ok(),
+ "Conversion to TableMetadata should succeed"
+ );
749
750
let metadata = metadata.unwrap();
751
assert_eq!(metadata.location, "/test/location");
0 commit comments