From 0e6c1a50260de141c50bb50fd3f2b2bcf9a3fe64 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 7 Oct 2025 20:06:26 +0900 Subject: container/check: move absolute pathname This allows use of absolute pathname values without importing container. Signed-off-by: Ophestra --- system/system_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'system/system_test.go') diff --git a/system/system_test.go b/system/system_test.go index 91d8a87e..5a361b95 100644 --- a/system/system_test.go +++ b/system/system_test.go @@ -9,6 +9,7 @@ import ( "testing" "hakurei.app/container" + "hakurei.app/container/check" "hakurei.app/container/stub" "hakurei.app/hst" "hakurei.app/system/internal/xcb" @@ -313,4 +314,4 @@ func TestNop(t *testing.T) { new(noCopy).Lock() } -func m(pathname string) *container.Absolute { return container.MustAbs(pathname) } +func m(pathname string) *check.Absolute { return check.MustAbs(pathname) } -- cgit v1.3.1