An easy-to-host PDS on the ATProtocol, MacOS. Grandma-approved.

docs: clean up some unnecessary comments

authored by malpercio.dev and committed by

Tangled cad29ff4 a4450bec

+3 -3
+3 -3
crates/relay/src/db/mod.rs
··· 195 195 assert_eq!(count, 1, "first run must insert exactly one row"); 196 196 } 197 197 198 - /// MM-72.AC2.1: Running migrations twice leaves only one row in schema_migrations. 198 + /// Running migrations twice leaves only one row in schema_migrations. 199 199 #[tokio::test] 200 200 async fn migrations_are_idempotent() { 201 201 let pool = in_memory_pool().await; ··· 212 212 ); 213 213 } 214 214 215 - /// MM-72.AC2.2: schema_migrations records version=1 with a non-null applied_at. 215 + /// schema_migrations records version=1 with a non-null applied_at. 216 216 /// Verifies that version and timestamp fields are recorded correctly. 217 217 #[tokio::test] 218 218 async fn schema_migrations_records_version_and_timestamp() { ··· 274 274 assert!(result.is_err(), "inserting duplicate key must fail"); 275 275 } 276 276 277 - /// MM-72.AC4.1: WAL mode requires a real file — use tempfile here, not :memory:. 277 + /// WAL mode requires a real file — use tempfile here, not :memory:. 278 278 /// In-memory SQLite reports journal_mode = "memory", not "wal". 279 279 #[tokio::test] 280 280 async fn wal_mode_enabled_on_file_pool() {