remove stray log

This commit is contained in:
Gabe Farrell 2026-01-14 21:27:56 -05:00
parent c934019ad9
commit c21925d3b4

View file

@ -2,7 +2,6 @@ package psql_test
import (
"context"
"log"
"testing"
"github.com/gabehf/koito/internal/db"
@ -111,7 +110,6 @@ func TestListenActivity(t *testing.T) {
require.NoError(t, err)
require.Len(t, activity, 4)
assert.Equal(t, []int64{1, 2, 2, 2, 1}, flattenListenCounts(activity))
log.Println(activity)
// Truncate listens table and insert specific dates for testing opts.Step = db.StepYear
err = store.Exec(context.Background(), `TRUNCATE TABLE listens RESTART IDENTITY`)