We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac4be15 commit 321396dCopy full SHA for 321396d
coderd/rbac/rolestore/rolestore_test.go
@@ -8,7 +8,7 @@ import (
8
9
"github.com/coder/coder/v2/coderd/database"
10
"github.com/coder/coder/v2/coderd/database/dbgen"
11
- "github.com/coder/coder/v2/coderd/database/dbmem"
+ "github.com/coder/coder/v2/coderd/database/dbtestutil"
12
"github.com/coder/coder/v2/coderd/rbac"
13
"github.com/coder/coder/v2/coderd/rbac/rolestore"
14
"github.com/coder/coder/v2/testutil"
@@ -17,7 +17,7 @@ import (
17
func TestExpandCustomRoleRoles(t *testing.T) {
18
t.Parallel()
19
20
- db := dbmem.New()
+ db, _ := dbtestutil.NewDB(t)
21
22
org := dbgen.Organization(t, db, database.Organization{})
23
0 commit comments