Update the snapshots

This commit is contained in:
Kerollmops 2025-02-18 11:24:22 +01:00
parent 683a2ac685
commit c8c0951c43
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
14 changed files with 17 additions and 17 deletions

View file

@ -43,7 +43,7 @@ async fn version_too_old() {
std::fs::write(db_path.join("VERSION"), "1.11.9999").unwrap();
let options = Opt { experimental_dumpless_upgrade: true, ..default_settings };
let err = Server::new_with_options(options).await.map(|_| ()).unwrap_err();
snapshot!(err, @"Database version 1.11.9999 is too old for the experimental dumpless upgrade feature. Please generate a dump using the v1.11.9999 and import it in the v1.13.2");
snapshot!(err, @"Database version 1.11.9999 is too old for the experimental dumpless upgrade feature. Please generate a dump using the v1.11.9999 and import it in the v1.13.3");
}
#[actix_rt::test]