From c61cdc505f05decd940cb2d861241039a49251e3 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 7 Apr 2026 16:31:46 +0900 Subject: internal/params: relocate from package container This does not make sense as part of the public API, so make it internal. Signed-off-by: Ophestra --- container/container_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'container/container_test.go') diff --git a/container/container_test.go b/container/container_test.go index 169efd8e..092a7a37 100644 --- a/container/container_test.go +++ b/container/container_test.go @@ -26,6 +26,7 @@ import ( "hakurei.app/fhs" "hakurei.app/hst" "hakurei.app/internal/info" + "hakurei.app/internal/params" "hakurei.app/ldd" "hakurei.app/message" "hakurei.app/vfs" @@ -84,9 +85,9 @@ func TestStartError(t *testing.T) { {"params env", &container.StartError{ Fatal: true, Step: "set up params stream", - Err: container.ErrReceiveEnv, + Err: params.ErrReceiveEnv, }, "set up params stream: environment variable not set", - container.ErrReceiveEnv, syscall.EBADF, + params.ErrReceiveEnv, syscall.EBADF, "cannot set up params stream: environment variable not set"}, {"params", &container.StartError{ -- cgit v1.3.1