summaryrefslogtreecommitdiff
path: root/internal/cli/cli_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-02 10:56:42 +0200
committerPaul Buetow <paul@buetow.org>2026-03-02 10:56:42 +0200
commitb636b12566ea6c2862bf3adc6686c57e0d785ca3 (patch)
tree5c94a13179bf4a6bba5616f8bbd74ec8d61e4d0c /internal/cli/cli_test.go
parent88f6ca2fb24973b78afe76f82ea86171e40fccff (diff)
store: make Data carry injected deps (task 402)
Diffstat (limited to 'internal/cli/cli_test.go')
-rw-r--r--internal/cli/cli_test.go11
1 files changed, 5 insertions, 6 deletions
diff --git a/internal/cli/cli_test.go b/internal/cli/cli_test.go
index 39c79aa..9ff0510 100644
--- a/internal/cli/cli_test.go
+++ b/internal/cli/cli_test.go
@@ -62,12 +62,11 @@ func testCLI(t *testing.T) (*CLI, *config.Config) {
t.Cleanup(func() { sh.Close() })
return &CLI{
- cfg: cfg,
- st: st,
- g: g,
- clip: clipboard.New("", ""),
- sh: sh,
- cipher: ciph,
+ cfg: cfg,
+ st: st,
+ g: g,
+ clip: clipboard.New("", ""),
+ sh: sh,
}, cfg
}