diff --git a/internal/bundb/bundb_test.go b/internal/bundb/bundb_test.go index 1441502..8395001 100644 --- a/internal/bundb/bundb_test.go +++ b/internal/bundb/bundb_test.go @@ -35,6 +35,12 @@ func newDB(tb testing.TB) *bun.DB { return newDBWithDSN(tb, dsn) } + return newDBDockertest(tb) +} + +func newDBDockertest(tb testing.TB) *bun.DB { + tb.Helper() + q := url.Values{} q.Add("sslmode", "disable") dsn := &url.URL{