From 304e4e17d4af53b97ae78db9388ab2a72a80973e Mon Sep 17 00:00:00 2001 From: Nikolay Ulmasov Date: Sun, 28 Jan 2024 12:48:27 +0000 Subject: [PATCH] fix a test that was left in failing state by mistake Signed-off-by: Nikolay Ulmasov --- crates/deltalake-core/src/operations/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/deltalake-core/src/operations/write.rs b/crates/deltalake-core/src/operations/write.rs index 1afa83ed68..ad55d6921b 100644 --- a/crates/deltalake-core/src/operations/write.rs +++ b/crates/deltalake-core/src/operations/write.rs @@ -1228,7 +1228,7 @@ mod tests { // Verify that table state hasn't changed let table = DeltaTable::new_with_state(table_logstore, table_state); - assert_eq!(table.get_latest_version().await.unwrap(), 1); + assert_eq!(table.get_latest_version().await.unwrap(), 0); } #[tokio::test]