From 9fd97e71d0330d6b6509f28686cf53825bc80941 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 5 Nov 2025 20:13:19 +0900 Subject: treewide: fit test untyped int literals in 32-bit This enables hakurei test suite to run on 32-bit targets. Signed-off-by: Ophestra --- system/acl/libacl-helper_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/acl') diff --git a/system/acl/libacl-helper_test.go b/system/acl/libacl-helper_test.go index 78e5776f..13d23a3c 100644 --- a/system/acl/libacl-helper_test.go +++ b/system/acl/libacl-helper_test.go @@ -46,7 +46,7 @@ func TestNewAclPathError(t *testing.T) { {"acl", container.Nonexistent, -13, syscall.ENOTRECOVERABLE, &os.PathError{Op: "setfacl", Path: container.Nonexistent, Err: syscall.ENOTRECOVERABLE}}, - {"invalid", container.Nonexistent, -0xdeadbeef, nil, + {"invalid", container.Nonexistent, -0xdead, nil, &os.PathError{Op: "setfacl", Path: container.Nonexistent}}, } for _, tc := range testCases { -- cgit v1.3.1