From eb22a8bcc1ac03357d4073e5d3ed6d0ab5246a37 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 2 Jul 2025 20:42:51 +0900 Subject: cmd/hakurei: move to cmd Having it at the project root never made sense since the "ego" name was deprecated. This change finally addresses it. Signed-off-by: Ophestra --- sandbox/container_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sandbox') diff --git a/sandbox/container_test.go b/sandbox/container_test.go index d7b774f7..72c50699 100644 --- a/sandbox/container_test.go +++ b/sandbox/container_test.go @@ -30,7 +30,7 @@ func TestContainer(t *testing.T) { { oldVerbose := hlog.Load() oldOutput := sandbox.GetOutput() - internal.InstallFmsg(true) + internal.InstallOutput(true) t.Cleanup(func() { hlog.Store(oldVerbose) }) t.Cleanup(func() { sandbox.SetOutput(oldOutput) }) } @@ -202,7 +202,7 @@ func TestHelperInit(t *testing.T) { return } sandbox.SetOutput(hlog.Output{}) - sandbox.Init(hlog.Prepare, internal.InstallFmsg) + sandbox.Init(hlog.Prepare, internal.InstallOutput) } func TestHelperCheckContainer(t *testing.T) { -- cgit v1.3.1