Update docs, manual changes

This commit is contained in:
binwiederhier
2026-02-20 16:36:41 -05:00
parent 13a3062a7f
commit a28d8e7924
6 changed files with 57 additions and 48 deletions

View File

@@ -35,7 +35,7 @@ func forEachBackend(t *testing.T, f func(t *testing.T, newStore newStoreFunc)) {
t.Run("postgres", func(t *testing.T) {
schemaDSN := dbtest.CreateTestSchema(t)
f(t, func() Store {
pool, err := db.Open(schemaDSN)
pool, err := db.OpenPostgres(schemaDSN)
require.Nil(t, err)
store, err := NewPostgresStore(pool)
require.Nil(t, err)