diff options
Diffstat (limited to 'internal/cli/cli_test.go')
| -rw-r--r-- | internal/cli/cli_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/cli/cli_test.go b/internal/cli/cli_test.go index 4b05487..487907d 100644 --- a/internal/cli/cli_test.go +++ b/internal/cli/cli_test.go @@ -18,6 +18,7 @@ import ( "codeberg.org/snonux/foostore/internal/config" "codeberg.org/snonux/foostore/internal/crypto" "codeberg.org/snonux/foostore/internal/git" + "codeberg.org/snonux/foostore/internal/migrate" "codeberg.org/snonux/foostore/internal/shell" "codeberg.org/snonux/foostore/internal/store" ) @@ -700,7 +701,7 @@ func TestDispatch_migrateKDBX_writesBinaryAndSavesKDBX(t *testing.T) { fake := &fakeKDBXStore{ overwrites: map[string]bool{"notes": true}, } - c.openKDBX = func(path, password string) (KDBXStore, error) { + c.openKDBX = func(path, password string) (migrate.KDBXStore, error) { if path != dbPath { t.Fatalf("openKDBX path = %q; want %q", path, dbPath) } |
