fix(tests): update migration count from 3 to 5 in test_migration_not_reapplied

Added migrations 004 and 005, so the expected count needs to be updated.
This commit is contained in:
jedarden 2026-05-26 11:00:04 -04:00
parent bec2dba4e8
commit 8e8de0de92

View file

@ -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);
}
}