diff options
Diffstat (limited to 'model/recipes_test.go')
-rw-r--r-- | model/recipes_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/model/recipes_test.go b/model/recipes_test.go index 15b90b6..d17ed92 100644 --- a/model/recipes_test.go +++ b/model/recipes_test.go @@ -21,8 +21,9 @@ func TestRecipesRead(t *testing.T) { storage.Create() } - InitDatabase(filepath.Join(storage.Path, "ceres.sqlite3")) - defer CloseDatabase() + ConnectDatabase(filepath.Join(storage.Path, "ceres.sqlite3")) + defer DisconnectDatabase() + MigrateDatabase() InjectTestRecipes() |