diff --git a/tests/KArtSell.Integration.Tests/DbUpMigrationTests.cs b/tests/KArtSell.Integration.Tests/DbUpMigrationTests.cs index 45e69191..d9db93a2 100644 --- a/tests/KArtSell.Integration.Tests/DbUpMigrationTests.cs +++ b/tests/KArtSell.Integration.Tests/DbUpMigrationTests.cs @@ -563,7 +563,7 @@ public sealed class DbUpMigrationTests : IAsyncLifetime { await using var connection = await _dataSource.OpenConnectionAsync(); await using var cmd = connection.CreateCommand(); - cmd.CommandText = File.ReadAllText(Path.Combine(AppContext.BaseDirectory, "migrations", "0022_model_operations_execution_schema.sql")); + cmd.CommandText = File.ReadAllText(Path.Combine(AppContext.BaseDirectory, "migrations", "0024_inbox_payload_hash_compatibility.sql")); await cmd.ExecuteNonQueryAsync(); }