···195195 assert_eq!(count, 1, "first run must insert exactly one row");
196196 }
197197198198- /// MM-72.AC2.1: Running migrations twice leaves only one row in schema_migrations.
198198+ /// Running migrations twice leaves only one row in schema_migrations.
199199 #[tokio::test]
200200 async fn migrations_are_idempotent() {
201201 let pool = in_memory_pool().await;
···212212 );
213213 }
214214215215- /// MM-72.AC2.2: schema_migrations records version=1 with a non-null applied_at.
215215+ /// schema_migrations records version=1 with a non-null applied_at.
216216 /// Verifies that version and timestamp fields are recorded correctly.
217217 #[tokio::test]
218218 async fn schema_migrations_records_version_and_timestamp() {
···274274 assert!(result.is_err(), "inserting duplicate key must fail");
275275 }
276276277277- /// MM-72.AC4.1: WAL mode requires a real file — use tempfile here, not :memory:.
277277+ /// WAL mode requires a real file — use tempfile here, not :memory:.
278278 /// In-memory SQLite reports journal_mode = "memory", not "wal".
279279 #[tokio::test]
280280 async fn wal_mode_enabled_on_file_pool() {