diff options
author | xengineering <me@xengineering.eu> | 2024-05-09 22:23:28 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-09 22:23:28 +0200 |
commit | 0142af99aba36241c276a56a088e7aac10c62f86 (patch) | |
tree | f1cfed7d60cd55feb15ae654ba7862198669f1cf /model/recipes_test.go | |
parent | f7fca11c47224ff28b10a7f41fb76ce0404a0236 (diff) | |
download | ceres-0142af99aba36241c276a56a088e7aac10c62f86.tar ceres-0142af99aba36241c276a56a088e7aac10c62f86.tar.zst ceres-0142af99aba36241c276a56a088e7aac10c62f86.zip |
model: Fix unit tests
Diffstat (limited to 'model/recipes_test.go')
-rw-r--r-- | model/recipes_test.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/model/recipes_test.go b/model/recipes_test.go index d17ed92..159422f 100644 --- a/model/recipes_test.go +++ b/model/recipes_test.go @@ -17,13 +17,10 @@ func TestRecipesRead(t *testing.T) { defer os.RemoveAll(storagePath) storage := NewStorage(storagePath) - if !storage.Exists() { - storage.Create() - } ConnectDatabase(filepath.Join(storage.Path, "ceres.sqlite3")) defer DisconnectDatabase() - MigrateDatabase() + MigrateDatabase("dummy_version") InjectTestRecipes() |