Skip to content

Commit 5e8e0b0

Browse files
author
ZENOTME
committed
fix test
1 parent 7b463c1 commit 5e8e0b0

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

crates/iceberg/src/transaction.rs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -962,22 +962,6 @@ mod tests {
962962
assert_eq!(data_file, *manifest.entries()[0].data_file());
963963
}
964964

965-
#[test]
966-
fn test_do_same_update_in_same_transaction() {
967-
let table = make_v2_table();
968-
let tx = Transaction::new(&table);
969-
let tx = tx
970-
.remove_properties(vec!["a".to_string(), "b".to_string()])
971-
.unwrap();
972-
973-
let tx = tx.remove_properties(vec!["c".to_string(), "d".to_string()]);
974-
975-
assert!(
976-
tx.is_err(),
977-
"Should not allow to do same kinds update in same transaction"
978-
);
979-
}
980-
981965
#[tokio::test]
982966
async fn test_add_existing_parquet_files_to_unpartitioned_table() {
983967
let mut fixture = TableTestFixture::new_unpartitioned();

0 commit comments

Comments
 (0)