Skip to content

Commit 0dbdd2c

Browse files
fix(test): prefix unused variable in lastfm_loved upsert test
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e7778ca commit 0dbdd2c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/mt-tauri/src/db/lastfm_loved.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ mod tests {
292292
assert!(id > 0);
293293

294294
// Second insert should update, not duplicate
295-
let id2 = upsert_loved_track(&conn, "Artist", "Track", Some(1234567899)).unwrap();
295+
let _id2 = upsert_loved_track(&conn, "Artist", "Track", Some(1234567899)).unwrap();
296296

297297
// Count should still be 1
298298
let count = get_loved_count(&conn).unwrap();

0 commit comments

Comments
 (0)