style(api): drop needless raw string hashes

This commit is contained in:
Miguel Palhas
2026-08-23 20:13:54 +01:00
parent 82100ef7ab
commit e335a1be73
+2 -2
View File
@@ -2011,8 +2011,8 @@ mod tests {
let first = episodes[0]["id"].as_i64().expect("episode id");
let pool = state.database().expect("database").pool();
sqlx::query(
r#"INSERT INTO media_files (owner_kind, owner_id, path, size, probed, waiver)
VALUES ('episode', ?, ?, 7, ?, ?)"#,
r"INSERT INTO media_files (owner_kind, owner_id, path, size, probed, waiver)
VALUES ('episode', ?, ?, 7, ?, ?)",
)
.bind(first)
.bind("/mnt/media/tv/kids/Bluey (2018) [tmdbid-82728]/Season 01/Bluey S01E01.mkv")