fix: remove migration 108

This removes migration added in 625887d249
This commit is contained in:
link2xt
2026-03-29 19:40:20 +02:00
committed by l
parent ef718bb869
commit 68e630eb82
3 changed files with 17 additions and 52 deletions

View File

@@ -1137,4 +1137,16 @@ mod tests {
Ok(())
}
/// Tests importing a backup from Delta Chat 1.30.3 for Android (core v1.86.0).
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn test_import_ancient_backup() -> Result<()> {
let mut tcm = TestContextManager::new();
let context = &tcm.unconfigured().await;
let backup_path = Path::new("test-data/core-1.86.0-backup.tar");
imex(context, ImexMode::ImportBackup, backup_path, None).await?;
Ok(())
}
}