From 1261670f16f722ec265a1289ea6b4851e3bef248 Mon Sep 17 00:00:00 2001 From: Nate Maninger Date: Thu, 16 Jan 2025 09:11:19 -0800 Subject: [PATCH] Update persist/sqlite/migrations_test.go Co-authored-by: Peter-Jan Brone --- persist/sqlite/migrations_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/persist/sqlite/migrations_test.go b/persist/sqlite/migrations_test.go index 91ef642..52813dd 100644 --- a/persist/sqlite/migrations_test.go +++ b/persist/sqlite/migrations_test.go @@ -126,7 +126,7 @@ CREATE TABLE global_settings ( );` func TestMigrationConsistency(t *testing.T) { - fp := filepath.Join(t.TempDir(), "hostd.sqlite3") + fp := filepath.Join(t.TempDir(), "walletd.sqlite3") db, err := sql.Open("sqlite3", sqliteFilepath(fp)) if err != nil { t.Fatal(err)