File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 55
66 "github.com/stretchr/testify/require"
77
8- "github.com/coder/coder/v2/coderd/database/dbmem "
8+ "github.com/coder/coder/v2/coderd/database/dbtestutil "
99 "github.com/coder/coder/v2/coderd/runtimeconfig"
1010 "github.com/coder/coder/v2/testutil"
1111 "github.com/coder/serpent"
@@ -32,7 +32,7 @@ func TestEntry(t *testing.T) {
3232
3333 ctx := testutil .Context (t , testutil .WaitShort )
3434 mgr := runtimeconfig .NewManager ()
35- db := dbmem . New ( )
35+ db , _ := dbtestutil . NewDB ( t )
3636
3737 override := serpent .String ("dogfood@dev.coder.com" )
3838
@@ -54,7 +54,7 @@ func TestEntry(t *testing.T) {
5454
5555 ctx := testutil .Context (t , testutil .WaitShort )
5656 mgr := runtimeconfig .NewManager ()
57- db := dbmem . New ( )
57+ db , _ := dbtestutil . NewDB ( t )
5858
5959 override := serpent.Struct [map [string ]string ]{
6060 Value : map [string ]string {
You can’t perform that action at this time.
0 commit comments