diff options
Diffstat (limited to 'internal/app/state/multi_test.go')
| -rw-r--r-- | internal/app/state/multi_test.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/internal/app/state/multi_test.go b/internal/app/state/multi_test.go index d493a388..b8e1db9b 100644 --- a/internal/app/state/multi_test.go +++ b/internal/app/state/multi_test.go @@ -1,9 +1,13 @@ package state_test import ( + "log" "testing" + "hakurei.app/container" "hakurei.app/internal/app/state" ) -func TestMulti(t *testing.T) { testStore(t, state.NewMulti(t.TempDir())) } +func TestMulti(t *testing.T) { + testStore(t, state.NewMulti(container.NewMsg(log.New(log.Writer(), "multi: ", 0)), t.TempDir())) +} |
