fix: add missing playCount and lastPlayed args to mapTrackRow test calls

The mapTrackRow signature was extended with playCount and lastPlayed
fields in the play history feature, but the scan_test.go callers
were not updated, breaking go vet and golangci-lint.
This commit is contained in:
2026-03-22 11:10:59 -04:00
parent f7ca138296
commit 916b5ef753
+4
View File
@@ -207,6 +207,8 @@ func TestMapTrackRow(t *testing.T) {
2, // channels
1411, // bitrate
35000000, // fileSize
0, // playCount
sql.NullTime{}, // lastPlayed
)
// Verify all 16 fields.
@@ -287,6 +289,8 @@ func TestMapTrackRow(t *testing.T) {
"/music/unknown.mp3", 0, "Test", "Artist",
sql.NullInt64{}, sql.NullInt64{}, // invalid (null)
"", "", 0, "", "", 0, 0, 0, 0, 0,
0, // playCount
sql.NullTime{}, // lastPlayed
)
if trackNull.TrackNumber != 0 {