File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import (
19
19
20
20
"github.com/ncruces/go-sqlite3/internal/util"
21
21
"github.com/ncruces/go-sqlite3/vfs"
22
- _ "github.com/ncruces/go-sqlite3/vfs/memdb"
22
+ "github.com/ncruces/go-sqlite3/vfs/memdb"
23
23
"github.com/tetratelabs/wazero"
24
24
"github.com/tetratelabs/wazero/api"
25
25
"github.com/tetratelabs/wazero/imports/wasi_snapshot_preview1"
@@ -162,6 +162,7 @@ func Test_multiwrite01(t *testing.T) {
162
162
}
163
163
164
164
func Test_config01_memory (t * testing.T ) {
165
+ memdb .Delete ("test.db" )
165
166
ctx := util .NewContext (newContext (t ), false )
166
167
cfg := config (ctx ).WithArgs ("mptest" , "/test.db" , "config01.test" ,
167
168
"--vfs" , "memdb" )
@@ -177,6 +178,7 @@ func Test_multiwrite01_memory(t *testing.T) {
177
178
t .Skip ("skipping in short mode" )
178
179
}
179
180
181
+ memdb .Delete ("test.db" )
180
182
ctx := util .NewContext (newContext (t ), false )
181
183
cfg := config (ctx ).WithArgs ("mptest" , "/test.db" , "multiwrite01.test" ,
182
184
"--vfs" , "memdb" )
You can’t perform that action at this time.
0 commit comments