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 5
5
6
6
"github.com/stretchr/testify/require"
7
7
8
- "github.com/coder/coder/v2/coderd/database/dbmem "
8
+ "github.com/coder/coder/v2/coderd/database/dbtestutil "
9
9
"github.com/coder/coder/v2/coderd/runtimeconfig"
10
10
"github.com/coder/coder/v2/testutil"
11
11
"github.com/coder/serpent"
@@ -32,7 +32,7 @@ func TestEntry(t *testing.T) {
32
32
33
33
ctx := testutil .Context (t , testutil .WaitShort )
34
34
mgr := runtimeconfig .NewManager ()
35
- db := dbmem . New ( )
35
+ db , _ := dbtestutil . NewDB ( t )
36
36
37
37
override := serpent .String ("dogfood@dev.coder.com" )
38
38
@@ -54,7 +54,7 @@ func TestEntry(t *testing.T) {
54
54
55
55
ctx := testutil .Context (t , testutil .WaitShort )
56
56
mgr := runtimeconfig .NewManager ()
57
- db := dbmem . New ( )
57
+ db , _ := dbtestutil . NewDB ( t )
58
58
59
59
override := serpent.Struct [map [string ]string ]{
60
60
Value : map [string ]string {
You can’t perform that action at this time.
0 commit comments