Skip to content

Commit

Permalink
remove incorrect test with the refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Jan 1, 2024
1 parent af6c1c1 commit 81ae502
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions crates/deltalake-core/tests/command_restore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,3 @@ async fn test_restore_allow_file_missing() -> Result<(), Box<dyn Error>> {
assert!(result.is_ok());
Ok(())
}

#[tokio::test]
async fn test_restore_transaction_conflict() -> Result<(), Box<dyn Error>> {
let context = setup_test().await?;
let mut table = context.table;
table.load_version(2).await?;

let result = DeltaOps(table).restore().with_version_to_restore(1).await;
assert!(result.is_err());
Ok(())
}

0 comments on commit 81ae502

Please sign in to comment.