diff --git a/crates/miroir-core/tests/p3_sqlite_restart.rs b/crates/miroir-core/tests/p3_sqlite_restart.rs index 2598e6e..4afcdda 100644 --- a/crates/miroir-core/tests/p3_sqlite_restart.rs +++ b/crates/miroir-core/tests/p3_sqlite_restart.rs @@ -504,8 +504,8 @@ fn test_migration_not_reapplied() { .query_row("SELECT COUNT(*) FROM schema_versions", [], |row| row.get(0)) .unwrap(); - // Should have exactly 3 migrations (001, 002, 003) - assert_eq!(count, 3); + // Should have exactly 5 migrations (001, 002, 003, 004, 005) + assert_eq!(count, 5); } }