test(server): update New() call for new Subsonic arg

This commit is contained in:
2026-04-19 17:40:10 +00:00
parent 5288e9d5df
commit 644af30a86
+3 -1
View File
@@ -7,10 +7,12 @@ import (
"net/http"
"net/http/httptest"
"testing"
"git.fabledsword.com/bvandeusen/minstrel/internal/subsonic"
)
func TestHealthz(t *testing.T) {
s := New(slog.New(slog.NewTextHandler(io.Discard, nil)), nil, nil)
s := New(slog.New(slog.NewTextHandler(io.Discard, nil)), nil, nil, subsonic.Config{})
ts := httptest.NewServer(s.Router())
defer ts.Close()